GET
/
v1
/
apps
/
{id}
Application Details
curl --request GET \
  --url https://api.vertracloud.app/v1/apps/{id} \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "response": {
    "id": "v111d4af8cd74272a284831fbae14a8v",
    "cluster": 1,
    "type": 1,
    "name": "Simple API",
    "description": "I have a description :)",
    "owner_id": "1085944713435160717",
    "owner_plan_id": 1,
    "language": "nodejs",
    "ram": 128,
    "status": "up",
    "subdomain": null,
    "custom_domain": null,
    "last_commit": "2025-08-09T15:51:47.234Z",
    "last_backup": null,
    "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 details 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 details of the application.
{
  "status": "success",
  "response": {
    "id": "v111d4af8cd74272a284831fbae14a8v",
    "cluster": 1,
    "type": 1,
    "name": "Simple API",
    "description": "I have a description :)",
    "owner_id": "1085944713435160717",
    "owner_plan_id": 1,
    "language": "nodejs",
    "ram": 128,
    "status": "up",
    "subdomain": null,
    "custom_domain": null,
    "last_commit": "2025-08-09T15:51:47.234Z",
    "last_backup": null,
    "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.
{
  "status": "error",
  "code "APP_NOT_FOUND"
}