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

# 全アプリケーションのステータス

> すべてのアプリケーションのステータス情報をリアルタイムで収集します。60秒あたり15リクエストのレート制限があります。

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

### Parameters

<ParamField query="workspaceId" type="string" placeholder="Workspace Id">
  workspaceのID。ダッシュボードのworkspace名の下で確認できます。
</ParamField>

`workspaceId` が指定されない場合は、アカウントのアプリケーションのステータスを取得します。

### Response

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

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

  <Expandable title="オブジェクトを切り替える">
    <ResponseField name="id" type="string">
      アプリケーションのID。
    </ResponseField>

    <ResponseField name="cpu" type="string">
      アプリケーションのCPU使用率。
    </ResponseField>

    <ResponseField name="ram" type="string">
      アプリケーションのRAM使用量。
    </ResponseField>

    <ResponseField name="running" type="boolean">
      アプリケーションが現在実行中かどうかを示します。
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json theme={null}
  {
    "status": "success",
    "response": [
      {
        "id": "5bbd020126ee4692aga43e0ca0a75454",
        "cpu": "0.00%",
        "ram": "55.88MB",
        "running": true
      },
      {
        "id": "e1b286ba30f14a87baed4b4ad3b53c47",
        "cpu": "0.01%",
        "ram": "68.44MB",
        "running": true
      }
    ]
  }
  ```
</ResponseExample>
