Skip to main content
GET
/
applications
/
{id}
Get application by id
curl --request GET \
  --url https://api.sevalla.com/v2/applications/{id} \
  --header 'Authorization: Bearer <token>'
{
  "app": {
    "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
    "name": "unique-name",
    "display_name": "firstsite",
    "hibernation_enabled": true,
    "hibernate_after_seconds": 900,
    "status": "deploymentSuccess",
    "deployments": [
      {
        "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
        "branch": "main",
        "repo_url": "http://example.com",
        "commit_message": "docs: example",
        "created_at": 1667489138845
      }
    ],
    "processes": [
      {
        "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
        "key": "web"
      }
    ],
    "internal_connections": [
      {
        "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
        "app": {
          "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
          "name": "unique-name"
        },
        "database": {
          "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
          "name": "unique-db-name"
        }
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Path Parameters

id
string
required
Example:

Response

app
object
required