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

> Get the API changelog with version history.

Get the API changelog with version history.

### Response

`object`

<ResponseField name="versions" type="object[]" required>
  <Expandable title="versions">
    <ResponseField name="version" type="string" />

    <ResponseField name="date" type="string (date)" />

    <ResponseField name="changes" type="string[]" />
  </Expandable>
</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/api/docs/changelog' \
    --header 'Authorization: Bearer YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "versions": [
      {
        "version": "2026-08-01",
        "date": "2026-08-31",
        "changes": []
      }
    ]
  }
  ```
</ResponseExample>
