GET
/
v1
/
apps
/
{id}
/
status
Application Status
curl --request GET \
  --url https://api.vertracloud.app/v1/apps/{id}/status \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "response": {
    "cpu": 25.5,
    "ram": 512,
    "storage": 1024,
    "status": "running",
    "running": true,
    "network": {
      "in": 1048576,
      "out": 524288
    },
    "uptime": 3600,
    "created_at": "2025-08-09T15:51:47.234Z",
    "updated_at": "2025-08-11T15:06:41.449Z"
  }
}
id
string
required
The ID of the application to retrieve status for. If the application belongs to an organization, include the organization ID in the format appId-orgId.

Response

status
string
Indicates whether the call was successful. success if successful, error if not.
response
object
The status and resource usage details of the application.
{
  "status": "success",
  "response": {
    "cpu": 25.5,
    "ram": 512,
    "storage": 1024,
    "status": "running",
    "running": true,
    "network": {
      "in": 1048576,
      "out": 524288
    },
    "uptime": 3600,
    "created_at": "2025-08-09T15:51:47.234Z",
    "updated_at": "2025-08-11T15:06:41.449Z"
  }
}

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.
  • APP_NOT_FOUND: The specified application does not exist.
  • FORBIDDEN: The user does not have permission to access the application.
  • INTERNAL_SERVER_ERROR: An error occurred while retrieving the status.
{
  "status": "error",
  "code": "APP_NOT_FOUND"
}