Skip to main content
GET
/
apps
/
{appId}
Detalhes da Aplicação
curl --request GET \
  --url https://dashboard.gratian.pro/api/v2/apps/{appId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "<string>",
    "status": "<string>",
    "usage": {
      "cpu": 123,
      "ramMb": 123,
      "storageMb": 123
    },
    "limits": {
      "ramMb": 123,
      "storageMb": 123
    },
    "uptime": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

appId
string
required

Response

Detalhes da instância

success
boolean
Example:

true

data
object