Query lists of books via the /books endpoint
masterUse the /books endpoint to retrieve lists of book information. Results are paginated, returning 0-32 books per request. By default, books are ordered by popularity (number of downloads).
Response Format:
{
"count": <number>,
"next": <string or null>,
"previous": <string or null>,
"results": <array of Books>
}count: Total number of books matching the query across all pages.next: URL to the next page of results.previous: URL to the previous page of results.results: Array of book objects.
{
"count": <number>,
"next": <string or null>,
"previous": <string or null>,
"results": <array of Books>
}