API overview
Request Format
How to format API requests to the Akhara API.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
How to format API requests to the Akhara API.
Content-Type: application/json
curl -X POST https://api.akhara.ai/v1/datasets \
-H "Authorization: Bearer gr_live_xxx" \
-H "Content-Type: application/json" \
-d '{
"name": "my-dataset",
"description": "Test dataset"
}'
curl "https://api.akhara.ai/v1/datasets?limit=20&project=proj_abc" \
-H "Authorization: Bearer gr_live_xxx"
| Parameter | Type | Description |
|---|---|---|
limit | integer | Max results to return (default: 20, max: 100) |
after | string | Cursor for pagination |
project | string | Filter by project ID |
X-Request-ID: req_abc123xyz
