Skip to main content
GET
/
v2
/
databases
/
status
All Databases Status
curl --request GET \
  --url https://api.squarecloud.app/v2/databases/status \
  --header 'Authorization: <authorization>'
{
    "status": "success",
    "response": [
        {
            "id": "a14b8d5e1cb7405a851eb4c075506121",
            "running": true,
            "ram": "118.95MB",
            "cpu": "0.40%"
        }
    ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.squarecloud.app/llms.txt

Use this file to discover all available pages before exploring further.

Request

Headers

Authorization
string
required
The API key for your account. You can find this in your account settings.

Response

status
string
Indicates whether the call was successful.. success if successful, error if not.
response
array
The contents of the response.
{
    "status": "success",
    "response": [
        {
            "id": "a14b8d5e1cb7405a851eb4c075506121",
            "running": true,
            "ram": "118.95MB",
            "cpu": "0.40%"
        }
    ]
}