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

# Platform API reference: endpoints, methods, and paths

> Every Kite Platform API endpoint at a glance — augmentation and account routes, with methods, paths, and links to the OpenAPI spec.

All endpoints are under `https://api.kiteml.com/v1` and require a Bearer token. Full request and response schemas are published as OpenAPI at `https://api.kiteml.com/v1/openapi.json`, rendered at [`/v1/docs`](https://api.kiteml.com/v1/docs).

## Augmentations

| Method | Path                           | Description                                                |
| ------ | ------------------------------ | ---------------------------------------------------------- |
| `POST` | `/v1/augmentations`            | Start a run (`source`, `instructions`, `config`, `output`) |
| `POST` | `/v1/augmentations/estimate`   | Estimate the token cost of a run before starting it        |
| `GET`  | `/v1/augmentations/:id`        | Status, progress, and — when done — output files           |
| `GET`  | `/v1/augmentations`            | List your runs                                             |
| `POST` | `/v1/augmentations/:id/cancel` | Cancel a running augmentation                              |

See [Augmentations](/platform-api/augmentation) for the full lifecycle, request body, and response shapes.

## Account

| Method | Path          | Description                                        |
| ------ | ------------- | -------------------------------------------------- |
| `GET`  | `/v1/keys/me` | Identity and scopes for the current API key        |
| `GET`  | `/v1/usage`   | Token usage over a date range, grouped by resource |
| `GET`  | `/v1/credits` | Current credit balance                             |

## Train

<Note>
  **Coming soon.** Training endpoints aren't on `/v1` yet. You can train today from the [dashboard](https://kiteml.com/app), the [Kite CLI](https://kiteml.com/docs/cli), and the [MCP server](https://kiteml.com/docs/mcp) — all with the same API key.
</Note>

## Evaluate

<Note>
  **Coming soon.** Simulation evaluation endpoints aren't on `/v1` yet. Evaluation runs are available today from the [dashboard](https://kiteml.com/app) and the [Kite CLI](https://kiteml.com/docs/cli).
</Note>

<Info>
  The interactive reference at [`api.kiteml.com/v1/docs`](https://api.kiteml.com/v1/docs) is generated from the same OpenAPI spec the API is built on, so it's always in sync with production.
</Info>
