Skip to content

List all series

GET
/api/series

Returns distinct series names with book counts and cover art. Supports search filtering.

Parameters

Query Parameters

q

Filter series names (partial match)

Type
string
Max Length
500
Default
""

Responses

Series list

application/json
JSON
{
  
"data": [
  
  
{
  
  
  
"name": "string",
  
  
  
"bookCount": 0,
  
  
  
"coverUrl": "string",
  
  
  
"coverPath": "string",
  
  
  
"coverBookId": "string"
  
  
}
  
],
  
"total": 0
}

Samples