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

> Erfasst Statusinformationen zu all deinen Anwendungen in Echtzeit. Es gilt ein Rate-Limit von 15 Anfragen alle 60 Sekunden.

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

### Parameter

<ParamField query="workspaceId" type="string" placeholder="Workspace Id">
  Eine Workspace-ID. Du findest sie im Dashboard unterhalb deines Workspace-Namens.
</ParamField>

Wenn `workspaceId` nicht angegeben wird, wird der Status der Anwendungen deines Kontos abgerufen.

### Antwort

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

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

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

    <ResponseField name="cpu" type="string">
      Die CPU-Auslastung der Anwendung.
    </ResponseField>

    <ResponseField name="ram" type="string">
      Die RAM-Auslastung der Anwendung.
    </ResponseField>

    <ResponseField name="running" type="boolean">
      Gibt an, ob die Anwendung derzeit läuft.
    </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>
