GET endpoints
Passcursor as a query parameter.
First request
Next request
POST search endpoints
Passcursor in the request body. Keep filters, sort, limit, and (for opportunities) pipeline_id/stage_id identical between pages.
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
How to paginate list and search endpoints.
{
"has_more": true,
"next_cursor": "opaque_cursor_token",
"limit": 10
}
{ "has_more": false, "next_cursor": null }
cursor as a query parameter.
curl "https://api.octolane.com/v1/accounts?limit=10" \
-H "x-api-key: your-api-key"
curl "https://api.octolane.com/v1/accounts?limit=10&cursor=<next_cursor>" \
-H "x-api-key: your-api-key"
cursor in the request body. Keep filters, sort, limit, and (for opportunities) pipeline_id/stage_id identical between pages.
{
"pipeline_id": "pipeline_uuid",
"limit": 10,
"sort": { "field": "updated_at", "direction": "desc" }
}
{
"pipeline_id": "pipeline_uuid",
"limit": 10,
"sort": { "field": "updated_at", "direction": "desc" },
"cursor": "next_cursor_from_previous_response"
}
query, filters, sort, limit, and (for opportunities) pipeline_id / stage_id. Changing any of these invalidates the cursor.Was this page helpful?