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

# 全データベースのステータス

> すべてのデータベースのステータスを取得します。

<ParamField header="Authorization" type="string" placeholder="API Key" required>
  アカウントの API キーです。これは[アカウント設定](https://squarecloud.app/ja/account/security)で確認できます。
</ParamField>

### Response

<ResponseField name="status" type="string">
  呼び出しが成功したかどうかを示します。成功した場合は `success`、失敗した場合は `error` です。
</ResponseField>

<ResponseField name="response" type="array">
  レスポンスの内容。

  <Expandable title="オブジェクトを切り替え">
    <ResponseField name="id" type="string">
      データベースのID。
    </ResponseField>

    <ResponseField name="running" type="boolean">
      実行中かどうかを示すブール値。
    </ResponseField>

    <ResponseField name="cpu" type="string">
      現在のCPU使用率（パーセント）。
    </ResponseField>

    <ResponseField name="ram" type="string">
      現在のRAM使用量
    </ResponseField>
  </Expandable>
</ResponseField>

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