GET
/
v1
/
databases
/
{id}
/
status
Get Database Status by ID
curl --request GET \
  --url https://api.vertracloud.app/v1/databases/{id}/status \
  --header 'Authorization: Bearer <token>'
{
  "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"
}
id
string
required
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

status
string
Indicates whether the call was successful. success if successful, error if not.
response
object
The status and resource usage details of the database.
{
  "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"
}