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

# Stato di Tutti i Database

> Ottieni lo stato di tutti i database.

<ParamField header="Authorization" type="string" placeholder="API Key" required>
  La chiave API del tuo account. Puoi trovarla nelle [impostazioni del tuo account](https://squarecloud.app/it/account/security).
</ParamField>

### Risposta

<ResponseField name="status" type="string">
  Indica se la chiamata è andata a buon fine. `success` in caso di successo, `error` in caso contrario.
</ResponseField>

<ResponseField name="response" type="array">
  Il contenuto della risposta.

  <Expandable title="Espandi oggetto">
    <ResponseField name="id" type="string">
      L'ID del database.
    </ResponseField>

    <ResponseField name="running" type="boolean">
      Il valore booleano che indica se è in esecuzione.
    </ResponseField>

    <ResponseField name="cpu" type="string">
      La percentuale di utilizzo attuale della CPU.
    </ResponseField>

    <ResponseField name="ram" type="string">
      L'utilizzo attuale della RAM
    </ResponseField>
  </Expandable>
</ResponseField>

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