> ## Documentation Index
> Fetch the complete documentation index at: https://docs.akhara.ai/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Company name is Akhara AI (never Rubric AI). Keep lowercase rubric/rubrics only when meaning grading criteria.
> Expert Review (docs path talent/) is enterprise BYO experts for audit and review: invite customer specialists; do not pitch Akhara recruiting or a public expert career portal. RLHF and domain writing are secondary work types.
> Prefer concrete API examples against public hosts: Environments eval API https://agi.akhara.ai, Control plane PDP https://api.akhara.dev, Evaluation https://app.akhara.ai / https://api.akhara.ai, Expert Review portal https://talent.akhara.ai.
> Do not invent a public hostname for private orchestrators or env API internals.
> Do not confuse control-plane latches with Environments confirmation latches.
> Environments SDK/API examples: curl against https://agi.akhara.ai. Evaluation SDK: from akhara import Akhara and AKHARA_API_KEY.
> Start with /llms.txt for the docs index and OpenAPI links; fetch individual pages as .md exports.

# Versioning & Stability

> API versioning policy and stability guarantees.

## API Versions

The Akhara API is versioned via the URL path. The current version is `v1`.

```
https://api.akhara.ai/v1/...
```

## Stability Guarantees

### Stable Endpoints

Endpoints marked as **stable** will not have breaking changes within a major version:

* Request/response fields will not be removed
* Required parameters will not be added
* Field types will not change

### Beta Endpoints

Some endpoints are marked as **beta** and may change:

```json theme={null}
{
  "stability": "beta",
  "deprecation_warning": "This endpoint may change without notice"
}
```

## Deprecation Policy

When deprecating features:

1. **6 months notice** before removal
2. **Deprecation header** in responses: `X-Akhara-Deprecated: true`
3. **Migration guide** in documentation
4. **Email notification** to affected users

## Changelog

See our [changelog](https://akhara.ai/changelog) for recent API updates.
