GET
/
v1
/
apps
/
status
All Applications Status
curl --request GET \
  --url https://api.vertracloud.app/v1/apps/status \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "response": [
    {
      "id": "v111d4af8cd74272a284831fbae14a8v",
      "cpu": "25%",
      "ram": "512 MB",
      "running": true
    },
    {
      "id": "v222e5bf9de84383b395942fcbf25b9w",
      "cpu": "0%",
      "ram": "0 MB",
      "running": false
    }
  ]
}
organization_id
string
The ID of the organization to retrieve application statuses for, if applicable.

Response

status
string
Indicates whether the call was successful. success if successful, error if not.
response
array
An array of status objects for each application.
{
  "status": "success",
  "response": [
    {
      "id": "v111d4af8cd74272a284831fbae14a8v",
      "cpu": "25%",
      "ram": "512 MB",
      "running": true
    },
    {
      "id": "v222e5bf9de84383b395942fcbf25b9w",
      "cpu": "0%",
      "ram": "0 MB",
      "running": false
    }
  ]
}

Error Responses

status
string
Indicates whether the call was successful. error if not successful.
code
string
The error code indicating the reason for failure. Possible values:
  • UNAUTHORIZED: The user is not authenticated or lacks sufficient permissions.
  • ORGANIZATION_NOT_FOUND: The specified organization does not exist.
  • USER_NOT_IN_ORGANIZATION: The user is not a member of the specified organization.
{
  "status": "error",
  "code": "UNAUTHORIZED"
}