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 a subset of data based on index positions

This is an experimental feature and is subject to change. Currently, only the /client/emojis endpoint supports this header!

This header works with the exclude header!

How to use:

  1. Header name: paginate

  2. Header value: page-amount

  • Example: 10-3 would retrieve up to 10 results on page 3

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

Last updated