Learn how to use pagination in Bolna Voice AI APIs using page_number
and page_size
to fetch results efficiently and build scalable workflows.
page_number
and page_size
query parameters. This allows you to fetch large sets of results in smaller, manageable chunks.
page_number
(integer, optional): The page of results to retrieve. Defaults to 1
. The first page starts at 1
.page_size
(integer, optional): The number of results per page. Defaults to 20
. You can request up to 50
results per page.page_number | page_size | Returned records |
---|---|---|
1 | 10 | Records 1–10 |
2 | 10 | Records 11–20 |
3 | 5 | Records 11–15 |
has_more
to determine if you should fetch the next page.