Skip to main content
GET
/
v1
/
apps
/
status
All Applications Status
curl --request GET \
  --url https://api.vertracloud.app/v1/apps/status
{
  "response": [
    {
      "id": "app-abc123def456",
      "cpu": "25.50%",
      "ram": "512.00 MB",
      "running": true
    },
    {
      "id": "app-xyz789mno012",
      "cpu": "0.00%",
      "ram": "0.00 MB",
      "running": false
    }
  ]
}
workspace_id
string
The workspace ID to retrieve application status, if applicable.

Response

response
array
An array of status objects for each application.
{
  "response": [
    {
      "id": "app-abc123def456",
      "cpu": "25.50%",
      "ram": "512.00 MB",
      "running": true
    },
    {
      "id": "app-xyz789mno012",
      "cpu": "0.00%",
      "ram": "0.00 MB",
      "running": false
    }
  ]
}

Error Responses

code
string
The error code indicating the reason for the failure. Possible values:
  • UNAUTHORIZED: The user is not authenticated or does not have sufficient permissions.
  • WORKSPACE_NOT_FOUND: The specified workspace does not exist.
  • USER_NOT_IN_WORKSPACE: The user is not a member of the specified workspace.
message
string
A descriptive message providing additional details about the error.
{
  "code": "UNAUTHORIZED"
}