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

# Liveness Check

> Check if the API is alive.

Check if the API is alive.

### Response

`object`

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

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

### Status codes

| Code  | Meaning                 |
| ----- | ----------------------- |
| `200` | Successful response     |
| `401` | Authentication required |
| `422` | Validation error        |
| `429` | Rate limit exceeded     |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'http://localhost:8000/live' \
    --header 'Authorization: Bearer YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "status": "alive",
    "timestamp": "2026-08-31T14:22:05Z"
  }
  ```
</ResponseExample>
