Skip to main content
Endpoints that return lists of resources use pagination. Paginated responses include a paging object:
{
  "paging": {
    "page": 2,
    "page_size": 50,
    "total_count": 150
  }
}
FieldDescription
pageThe current page number (1-based).
page_sizeThe number of results per page.
total_countThe total number of results available.

Requesting a specific page

Use the page and page_size query parameters:
curl -H "X-Eflow-API-Key: <your-api-key>" \
  "https://api.eflow.team/v1/networks/offers?page=2&page_size=10"

Defaults and limits

  • When not specified, the API returns page 1 with a page size of 50.
  • The maximum page size is typically 2,000, though some endpoints enforce a smaller limit.
  • Endpoints that return paginated responses are identified as such in their documentation.