Skip to main content

Pagination

All list endpoints return paginated results. Most endpoints use page-based pagination with page and limit parameters.

Parameters

page — Page number (default: 1).

limit — Results per page (default: 20, max: 500).

Response shape

{
  "data": [...],
  "total": 142,
  "links": {
    "self": "/v1/documents?page=2&limit=20"
  }
}

Example

curl "https://api.talonic.com/v1/documents?page=2&limit=50" \
  -H "Authorization: Bearer $TALONIC_API_KEY"