Appearance
Pagination
All list endpoints return paginated results.
Request parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
page | number | 1 | Page number, starting from 1 |
pageSize | number | 10 | Results 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
hasNextPageto know whether to fetch the next page - Keep
pageSizesmall for real-time UI (10–25) and larger for batch processing (up to 100)