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

# Public service status (no auth required)

> Services operational or degraded

### Response

`object`

<ResponseField name="timestamp" type="string (date-time)" required />

<ResponseField name="region" type="string" required />

<ResponseField name="status" type="string" required />

<ResponseField name="services" type="object" required>
  Per-service status, keyed by service name (api, database, redis, sandbox\_runtime, persistent\_workspaces, csi\_snapshots)
</ResponseField>

<ResponseField name="capabilities" type="object" required>
  <Expandable title="capabilities">
    <ResponseField name="workspace" type="object" required>
      <Expandable title="workspace">
        <ResponseField name="persistent_workspaces" type="object" required />

        <ResponseField name="csi_snapshots" type="object" required />
      </Expandable>
    </ResponseField>
  </Expandable>
</ResponseField>

### Status codes

| Code  | Meaning                          |
| ----- | -------------------------------- |
| `200` | Services operational or degraded |
| `503` | Service outage detected          |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://api.sandbox.stateset.app/api/status' \
    --header "Authorization: Bearer $STATESET_SANDBOX_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "timestamp": "2026-08-31T14:22:05Z",
    "region": "CA",
    "status": "operational",
    "services": {},
    "capabilities": {
      "workspace": {
        "persistent_workspaces": {
          "configured": null,
          "available": null
        },
        "csi_snapshots": {
          "configured": null,
          "available": null
        }
      }
    }
  }
  ```
</ResponseExample>
