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

# Readiness check

> Service is ready

### Response

`object`

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

<ResponseField name="checks" type="object" required>
  Readiness of each dependency (sandbox\_manager, persistent\_workspaces, csi\_snapshots, redis, database), keyed by check name
</ResponseField>

<ResponseField name="check_duration_ms" type="integer" required />

### Status codes

| Code  | Meaning              |
| ----- | -------------------- |
| `200` | Service is ready     |
| `503` | Service is not ready |

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

<ResponseExample>
  ```json 200 theme={null}
  {
    "status": "ready",
    "checks": {},
    "check_duration_ms": 8
  }
  ```
</ResponseExample>
