Skip to content

Get library filter facets

GET
/api/library/facets

Returns library filter values. The organized library is shared, so every caller receives every uploader who owns an organized book. Each uploader is identified by an opaque per-install reference plus a display label — never by user id. Pass the reference back as uploaderId on GET /api/library.

Responses

Distinct authors, genres, languages, series, and uploader values

application/json
JSON
{
  
"authors": [
  
  
"string"
  
],
  
"genres": [
  
  
"string"
  
],
  
"languages": [
  
  
"string"
  
],
  
"series": [
  
  
"string"
  
],
  
"uploaders": [
  
  
{
  
  
  
"id": "string",
  
  
  
"label": "string"
  
  
}
  
]
}

Samples