Skip to main content
GET
/
applications
/
{id}
Get application
curl --request GET \
  --url https://api.sevalla.com/v2/applications/{id} \
  --header 'Authorization: Bearer <token>'
{
  "app": {
    "id": "fb5e5168-4281-4bec-94c5-0d1584e9e657",
    "name": "my-app",
    "display_name": "My Application",
    "hibernation_enabled": false,
    "hibernate_after_seconds": 3600,
    "status": "deploymentSuccess",
    "deployments": [
      {
        "id": "fb5e5168-4281-4bec-94c5-0d1584e9e657",
        "branch": "main",
        "repo_url": "https://github.com/user/repo",
        "commit_message": "feat: add new feature",
        "created_at": 1738195200000
      }
    ],
    "processes": [
      {
        "id": "fb5e5168-4281-4bec-94c5-0d1584e9e657",
        "key": "web"
      }
    ],
    "internal_connections": [
      {
        "id": "fb5e5168-4281-4bec-94c5-0d1584e9e657",
        "app": {
          "id": "fb5e5168-4281-4bec-94c5-0d1584e9e657",
          "name": "my-app"
        },
        "database": {
          "id": "fb5e5168-4281-4bec-94c5-0d1584e9e657",
          "name": "my-database"
        }
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API key authentication. Pass your API key as a Bearer token in the Authorization header.

Path Parameters

id
string<uuid>
required
Example:

"fb5e5168-4281-4bec-94c5-0d1584e9e657"

Response

Default Response

app
object
required