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

# API Root

> Welcome endpoint with API information and available endpoints.

Welcome endpoint with API information and available endpoints.

### Response

`object`

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

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

<ResponseField name="documentation" type="string" />

<ResponseField name="openapi" type="string" />

<ResponseField name="health" type="string" />

<ResponseField name="endpoints" type="object" required>
  Name → path for every top-level surface
</ResponseField>

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

<ResponseExample>
  ```json 200 theme={null}
  {
    "message": "Two-person tent, green — replacement for damaged pole set.",
    "version": "2026-08-01",
    "documentation": "string",
    "openapi": "string",
    "health": "string",
    "endpoints": {}
  }
  ```
</ResponseExample>
