GET
/
v1
/
apps
/
{id}
/
logs
Application Logs
curl --request GET \
  --url https://api.vertracloud.app/v1/apps/{id}/logs \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "response": "2025-08-14T19:58:00Z [INFO] Application started successfully\n2025-08-14T19:58:01Z [DEBUG] Connected to database\n2025-08-14T19:58:02Z [ERROR] Failed to process request"
}
id
string
required
The ID of the application to retrieve realtime logs 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
string
The log content for the specified application.
{
  "status": "success",
  "response": "2025-08-14T19:58:00Z [INFO] Application started successfully\n2025-08-14T19:58:01Z [DEBUG] Connected to database\n2025-08-14T19:58:02Z [ERROR] Failed to process request"
}