> ## 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.

# All Databases Status

> Get all databases statuses.

<ParamField header="Authorization" type="string" placeholder="API Key" required>
  The API key for your account. You can find this in your [account settings](https://squarecloud.app/en/account/security).
</ParamField>

Returns live runtime stats, whether it's running, CPU and RAM usage, for every database owned by the caller in a single call. Use it to render a dashboard overview instead of calling [Get Database Status](/en/api-reference/endpoint/databases/status) once per database.

This collection form is rate limited to 15 requests per 60 seconds per user, with a 60-second block once that cap is hit; the single-database form is not subject to this limit. For historical CPU/RAM/network trends instead of a live snapshot, see [Get Database Metrics](/en/api-reference/endpoint/databases/metrics).

### Response

<ResponseField name="status" type="string">
  Indicates whether the call was successful.. `success` if successful, `error` if not.
</ResponseField>

<ResponseField name="response" type="array">
  The contents of the response.

  <Expandable title="Toggle object">
    <ResponseField name="id" type="string">
      The ID of the database.
    </ResponseField>

    <ResponseField name="running" type="boolean">
      The boolean value if is running.
    </ResponseField>

    <ResponseField name="cpu" type="string">
      The current CPU usage percentage.
    </ResponseField>

    <ResponseField name="ram" type="string">
      The current RAM usage
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json theme={null}
  {
      "status": "success",
      "response": [
          {
              "id": "a14b8d5e1cb7405a851eb4c075506121",
              "running": true,
              "ram": "118.95MB",
              "cpu": "0.40%"
          }
      ]
  }
  ```
</ResponseExample>
