The ID of the database to retrieve status for. If the database belongs to an organization, include the organization ID in the format dbId-orgId
.
Response
Indicates whether the call was successful. success
if successful, error
if not.
The status and resource usage details of the database.
The CPU usage percentage.
The database’s status (e.g., running
).
Indicates whether the database is currently running.
Network usage details.
Outbound network traffic.
The database’s uptime in seconds.
The timestamp when the database was created.
The timestamp when the database was last updated.
{
"status": "success",
"response": {
"cpu": 12.3,
"ram": 256,
"storage": 512,
"status": "running",
"running": true,
"network": {
"total": "320.15KB ↓ 20.10KB ↑",
"now": "5.00KB ↑ 1.00KB ↓"
},
"uptime": 7200,
"created_at": "2025-08-09T15:51:47.234Z",
"updated_at": "2025-08-11T15:06:41.449Z"
}
}
</ResponseExample>
```json Error Response (404)
{
"status": "error",
"code": "DATABASE_NOT_FOUND"
}