> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vertracloud.app/llms.txt
> Use this file to discover all available pages before exploring further.

# All Applications Status

> Retrieves the status of all applications for the authenticated user or a specified workspace.

<ParamField query="workspace_id" type="string">
  The workspace ID to retrieve application status, if applicable.
</ParamField>

### Response

<ResponseField name="response" type="array">
  An array of status objects for each application.

  <Expandable title="Toggle object">
    <ResponseField name="id" type="string">
      The application ID.
    </ResponseField>

    <ResponseField name="cpu" type="string">
      CPU usage percentage (e.g., `25.5%`).
    </ResponseField>

    <ResponseField name="ram" type="string">
      RAM usage (e.g., `512 MB`).
    </ResponseField>

    <ResponseField name="running" type="boolean">
      Indicates if the application is running.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "response": [
      {
        "id": "app-abc123def456",
        "cpu": "25.50%",
        "ram": "512.00 MB",
        "running": true
      },
      {
        "id": "app-xyz789mno012",
        "cpu": "0.00%",
        "ram": "0.00 MB",
        "running": false
      }
    ]
  }
  ```
</ResponseExample>

### Error Responses

<ResponseField name="code" type="string">
  The error code indicating the reason for the failure. Possible values:

  * `UNAUTHORIZED`: The user is not authenticated or does not have sufficient permissions.
  * `WORKSPACE_NOT_FOUND`: The specified workspace does not exist.
  * `USER_NOT_IN_WORKSPACE`: The user is not a member of the specified workspace.
</ResponseField>

<ResponseField name="message" type="string">
  A descriptive message providing additional details about the error.
</ResponseField>

<ResponseExample>
  ```json Error Response (403) theme={null}
  {
    "code": "UNAUTHORIZED"
  }
  ```

  ```json Error Response (404) theme={null}
  {
    "code": "WORKSPACE_NOT_FOUND"
  }
  ```

  ```json Error Response (403) theme={null}
  {
    "code": "USER_NOT_IN_WORKSPACE"
  }
  ```
</ResponseExample>
