Paginate Header

Automatic Pagination for easier results!

Handling large sets of data can be challenging, especially when you're only interested in a specific range of results. To make pagination easier, our API supports a paginate header, allowing you to retrieve only a subset of data based on index positions

How to use:

Simply add a header named paginate and input the start and ending index separated by a dash. Example: 1-5 would retrieve results 1 through 5!

BDFD Example
$httpAddHeader[paginate;3-9]
Discord.js Example
{
'headers': {
'paginate': '3-9' 
    }
}

Last updated