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

# Status aller Datenbanken

> Ruft die Status aller Datenbanken ab.

<ParamField header="Authorization" type="string" placeholder="API Key" required>
  Der API-Schlüssel für Ihr Konto. Sie finden ihn in Ihren [Kontoeinstellungen](https://squarecloud.app/de/account/security).
</ParamField>

### Antwort

<ResponseField name="status" type="string">
  Gibt an, ob der Aufruf erfolgreich war. `success` bei Erfolg, `error` andernfalls.
</ResponseField>

<ResponseField name="response" type="array">
  Der Inhalt der Antwort.

  <Expandable title="Objekt umschalten">
    <ResponseField name="id" type="string">
      Die ID der Datenbank.
    </ResponseField>

    <ResponseField name="running" type="boolean">
      Der boolesche Wert, ob sie läuft.
    </ResponseField>

    <ResponseField name="cpu" type="string">
      Die aktuelle CPU-Auslastung in Prozent.
    </ResponseField>

    <ResponseField name="ram" type="string">
      Die aktuelle RAM-Auslastung
    </ResponseField>
  </Expandable>
</ResponseField>

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