API Reference
Kontext provides a REST API for programmatic access to your Feedback, Problems, and Product data.
The API is currently in development. This section will be expanded as endpoints become available.
Base URL
https://app.getkontext.io/api/v1
Authentication
All API requests require an API key passed in the Authorization header:
curl -H "Authorization: Bearer your-api-key" \
https://app.getkontext.io/api/v1/products
See Authentication for details on generating and managing API keys.
All responses are JSON. Successful responses return data directly:
{
"data": { ... },
"meta": {
"page": 1,
"pageSize": 20,
"total": 42
}
}
Error responses include a code and message:
{
"error": {
"code": "not_found",
"message": "Product not found"
}
}