Skip to main content
GET
/
v1
/
apps
/
{id}
Application Details
curl --request GET \
  --url https://api.vertracloud.app/v1/apps/{id}
{
  "response": {
    "id": "app-abc123def456",
    "cluster": 1,
    "type": 1,
    "name": "API Simples",
    "description": "I have a description :)",
    "owner_id": "user-993591427428790342",
    "owner_plan_id": 1,
    "language": "javascript",
    "ram": 128,
    "status": "up",
    "subdomain": "myapp.vertraweb.app",
    "custom_domain": null,
    "last_snapshot": "2026-03-09T15:51:47.234Z",
    "main_file": "index.js",
    "version": "recommended",
    "auto_restart": true,
    "start_command": "node index.js",
    "use_credits": false,
    "credits_used": 0,
    "offline_since": null,
    "created_at": "2026-03-09T15:51:47.234Z",
    "updated_at": "2026-03-20T15:06:41.449Z"
  }
}
id
string
required
The application ID to retrieve details. If the application belongs to a workspace, include the workspace ID in the format appId-workspaceId.

Response

response
object
The application details.
{
  "response": {
    "id": "app-abc123def456",
    "cluster": 1,
    "type": 1,
    "name": "API Simples",
    "description": "I have a description :)",
    "owner_id": "user-993591427428790342",
    "owner_plan_id": 1,
    "language": "javascript",
    "ram": 128,
    "status": "up",
    "subdomain": "myapp.vertraweb.app",
    "custom_domain": null,
    "last_snapshot": "2026-03-09T15:51:47.234Z",
    "main_file": "index.js",
    "version": "recommended",
    "auto_restart": true,
    "start_command": "node index.js",
    "use_credits": false,
    "credits_used": 0,
    "offline_since": null,
    "created_at": "2026-03-09T15:51:47.234Z",
    "updated_at": "2026-03-20T15:06:41.449Z"
  }
}

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.
  • APP_NOT_FOUND: The specified application does not exist.
message
string
A descriptive message providing additional details about the error.
{
  "code": "APP_NOT_FOUND"
}