curl https://api.okrapdf.com/v1/agents \
-H "Authorization: Bearer okra_YOUR_KEY"
Agents
List Agents
List all agents owned by the authenticated user.
GET
/
v1
/
agents
curl https://api.okrapdf.com/v1/agents \
-H "Authorization: Bearer okra_YOUR_KEY"
Overview
Returns a paginated list of agents belonging to the authenticated user.integer
Maximum number of agents to return. Default
20, max 100.string
Pagination cursor from a previous response.
curl https://api.okrapdf.com/v1/agents \
-H "Authorization: Bearer okra_YOUR_KEY"
Response (200)
{
"data": [
{
"id": "agent_cf3de29f5a384695",
"name": "invoice-extractor",
"model": "default",
"table_id": "tbl_abc123",
"version": 1,
"created_at": "2026-04-14T05:30:00Z"
}
],
"has_more": false
}