Skip to content

Pagination

All list endpoints return paginated results.

Request parameters

ParameterTypeDefaultDescription
pagenumber1Page number, starting from 1
pageSizenumber10Results per page. Maximum: 100
bash
curl -X POST https://api-rest.tendios.com/api/v1/tenders/search \
  -H "api-key: tend_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{ "page": 2, "pageSize": 25 }'

Response shape

json
{
  "data": [...],
  "pagination": {
    "page": 2,
    "pageSize": 25,
    "hasNextPage": true
  }
}

Tips

  • Start at page: 1 — pages are 1-based
  • Use hasNextPage to know whether to fetch the next page
  • Keep pageSize small for real-time UI (10–25) and larger for batch processing (up to 100)

© Tendios