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

# API Overview

> Programmatic access to Kontext data.

# API Reference

Kontext provides a REST API for programmatic access to your Feedback, Problems, and Product data.

<Note>
  The API is currently in development. This section will be expanded as endpoints become available.
</Note>

## Base URL

```
https://app.getkontext.io/api/v1
```

## Authentication

All API requests require an API key passed in the `Authorization` header:

```bash theme={null}
curl -H "Authorization: Bearer your-api-key" \
  https://app.getkontext.io/api/v1/products
```

See [Authentication](/api-reference/authentication) for details on generating and managing API keys.

## Response format

All responses are JSON. Successful responses return data directly:

```json theme={null}
{
  "data": { ... },
  "meta": {
    "page": 1,
    "pageSize": 20,
    "total": 42
  }
}
```

Error responses include a code and message:

```json theme={null}
{
  "error": {
    "code": "not_found",
    "message": "Product not found"
  }
}
```
