curl --request GET \
--url https://api.example.com/api/v1/databases/{id}Get details for a specific database.
curl --request GET \
--url https://api.example.com/api/v1/databases/{id}| Parameter | Type | Description |
|---|---|---|
id | uuid | Database ID |
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "my-app",
"displayName": "My Application",
"host": "13.61.204.171",
"port": 6432,
"dbName": "my_app",
"username": "my_app",
"password": "current-password",
"status": "active",
"sizeBytes": 8388608,
"createdAt": "2026-03-19T12:00:00.000Z"
}
| Status | Code | Description |
|---|---|---|
| 404 | NOT_FOUND | Database doesn’t exist or isn’t owned by this user |