Skip to main content
Use this endpoint to get a lightweight status summary for all of your managed databases in a single request. The response returns an array of objects — one per database — making it straightforward to build a dashboard overview or health-check loop without issuing individual status calls for each database.

Request

GET https://api.virtuscloud.app/v2/databases/status

Headers

Authorization
string
required
Your Virtus Cloud API key. Pass it directly as the header value — no prefix required.Example: Authorization: vc_live_xxxxxxxxxxxx

Response

status
string
Returns "success" when the request completes successfully.
response
array
An array of status objects, one per database in your account.
For detailed metrics — including storage, network I/O, and uptime — use the single database status or metrics endpoints.

Examples

curl -X GET https://api.virtuscloud.app/v2/databases/status \
  -H "Authorization: <api_key>"

Response Example

{
  "status": "success",
  "response": [
    {
      "id": "a14b8d5e1cb7405a851eb4c075506121",
      "running": true,
      "ram": "118.95MB",
      "cpu": "0.40%"
    }
  ]
}