AviatoAviato
DeveloperAPI ReferenceAdapterJellyfinItemsFilters

Available filter values (minimal stub)

GET
/api/adapter/jellyfin/Items/Filters

Returns the filter envelope shape Jellyfin clients expect. Genres / Tags / Years are stubbed empty in v1 — clients still render the filter UI but with no preset options.

Query Parameters

userId?string
parentId?string

Response Body

application/json

curl -X GET "https://example.com/api/adapter/jellyfin/Items/Filters"
{
  "Genres": [
    "string"
  ],
  "OfficialRatings": [
    "string"
  ],
  "Tags": [
    "string"
  ],
  "Years": [
    0
  ],
  "property1": null,
  "property2": null
}