List genres with book counts. Does not require authentication.
Parameters
Output
Encoding
application/jsongenres
array
Required
No description available.
offset
integer
Optional
Next offset for pagination
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"genres"
],
"properties": {
"genres": {
"type": "array",
"items": {
"ref": "#genreWithCount",
"type": "ref"
}
},
"offset": {
"type": "integer",
"description": "Next offset for pagination"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of genres to return"
},
"offset": {
"type": "integer",
"description": "Offset for pagination"
},
"minBooks": {
"type": "integer",
"default": 0,
"minimum": 0,
"description": "Only return genres with at least this many books"
}
}
},
"description": "List genres with book counts. Does not require authentication."
}