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"
}
}
]
}
}Fetch detailed information about a specific application by its unique identifier.
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"
}
}
]
}
}Was this page helpful?