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
Indicates whether the call was successful. success
if successful, error
if not.
The details of the application. The cluster ID of the application.
The application’s description.
The ID of the application’s owner.
The ID of the owner’s plan.
The application’s programming language (e.g., nodejs
).
The application’s RAM usage in MB.
The application’s status (e.g., up
).
The application’s subdomain, if applicable.
The application’s custom domain, if applicable.
The timestamp of the application’s last commit.
The timestamp of the application’s last backup, if applicable.
The timestamp when the application was created.
The timestamp when the application was last updated.
{
"status" : "success" ,
"response" : {
"id" : "v111d4af8cd74272a284831fbae14a8v" ,
"cluster" : 1 ,
"type" : 1 ,
"name" : "Simple API" ,
"description" : "I have a description :)" ,
"owner_id" : "993591427428790342" ,
"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
Indicates whether the call was successful. error
if not successful.
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.
Error Response (404)
Error Response (403)
{
"status" : "error" ,
"code " APP_NOT_FOUND "
}