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

# Health Check (v1)

> Health check endpoint for API v1.

Health check endpoint for API v1.

### Response

`object`

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

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

<ResponseField name="uptime_seconds" type="number" required />

<ResponseField name="components" type="object[]" required>
  <Expandable title="components">
    <ResponseField name="name" type="string">
      `api`, `auth` or `rate_limit`
    </ResponseField>

    <ResponseField name="status" type="string">
      `healthy`, `enabled` or `disabled`
    </ResponseField>
  </Expandable>
</ResponseField>

<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/api/v1/health' \
    --header 'Authorization: Bearer YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "status": "pending",
    "version": "2026-08-01",
    "uptime_seconds": 250,
    "components": [
      {
        "name": "Two-Person Tent",
        "status": "pending"
      }
    ],
    "timestamp": "2026-08-31T14:22:05Z"
  }
  ```
</ResponseExample>
