Application
Get Application Status
Collect status information about your application.
GET
/
v2
/
apps
/
{app_id}
/
status
Header
Path
curl --request GET \
--url https://api.squarecloud.app/v2/apps/{app_id}/status \
--header 'Authorization: <authorization>'
{
"status": "success",
"response": {
"cpu": "0.01%",
"ram": "31.79",
"status": "running",
"running": true,
"storage": "2.72MB",
"network": {
"total": "602 KB ↑ 134 KB ↓",
"now": "14 KB ↑ 3.3 KB ↓"
},
"requests": 0,
"uptime": 1662927833666
}
}
Authorization
string
requiredThe API key for your account. You can find this in your account settings.
app_id
string
requiredThe ID of the application. You can find this in the URL of your application’s dashboard.
Response
status
string
Indicates whether the call was successful. “success” if successful, “error” if not.
code
string
The status code of the response.
response
object
The contents of the response.
Was this page helpful?
curl --request GET \
--url https://api.squarecloud.app/v2/apps/{app_id}/status \
--header 'Authorization: <authorization>'
{
"status": "success",
"response": {
"cpu": "0.01%",
"ram": "31.79",
"status": "running",
"running": true,
"storage": "2.72MB",
"network": {
"total": "602 KB ↑ 134 KB ↓",
"now": "14 KB ↑ 3.3 KB ↓"
},
"requests": 0,
"uptime": 1662927833666
}
}