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

# Root

> Operational endpoint for status, liveness, readiness, tool metadata, or function diagnostics.

Operational endpoint for status, liveness, readiness, tool metadata, or function diagnostics.

### Response

`RootResponse`

<ResponseField name="message" type="string" required>
  Human-readable status message
</ResponseField>

<ResponseField name="org_id" type="string,null">
  Organization ID
</ResponseField>

<ResponseField name="tenant" type="string" required>
  Tenant identifier
</ResponseField>

<ResponseField name="timestamp" type="string" required>
  ISO 8601 timestamp
</ResponseField>

<ResponseField name="version" type="string" required>
  Server version
</ResponseField>

### Status codes

| Code  | Meaning                |
| ----- | ---------------------- |
| `200` | Server status endpoint |
| `401` | Unauthorized           |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://api.voice.stateset.com/status' \
    --header 'Authorization: Bearer YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "message": "StateSet Cloud <-> Twilio Media Stream Server (Rust) is running!",
    "org_id": "org-456",
    "tenant": "tenant_acme_dental",
    "timestamp": "2026-05-14T17:40:00Z",
    "version": "0.7.33"
  }
  ```
</ResponseExample>
