> ## Documentation Index
> Fetch the complete documentation index at: https://docs.birdeye.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Pagination

Multiple API supporting pagination. These APIs have two parameters sindex and count.

* <b>sindex:</b> is the start index
* <b>count:</b> No. of records, you want to fetch.

> **Note**
>
> * *Deep Pagination with record window greater than 100k is not supported. Either reduce the sindex + count to be less than equal to 100k or use appropriate filters to narrow down your result set.*

<b>For example :</b>

* Suppose you have to fetch 20 records:

```
API call 1 -> sindex=0, count 10
API call 2 -> sindex -> 10, count 10.
```

* To fetch 100kth record:

```
sindex = 99000 and count = 1000
will just work fine as sindex + count = 100000 which is less than 100,000.
```

* If you fetch more than 100kth records:

```
sindex = 99000 and count = 1001, sindex + count = 100001
which is greater than 100,000. Thus, you'll receive an error in response.
```
