Pagination
Pagination is only a few supported endpoints that returns an array instead of a single object.
Currently supported pagination endpoints:
Usage
/quotes/?anime=<anime>&page=<page_number>Return
It will return an array of Quote object
Example:
We are using the built-in global
fetchAPI here, which is both available in browser and NodeJS as of now. But you can use any other programming language or request lib.
const response = await fetch(`${BASE_URL}/quotes?anime=${animeName}&page=2`)
const quote = await response.json()