Genres are used to categorize shows. Each genre object contains the id and name of the genre. When fetching genres via /genres endpoint, you can pass the output_language parameter to get the genre names in one of the supported languages.

You can use genre ids to filter shows in the search endpoints.

Genre

interface Genre {
    id: string;
    name: string;
}

Properties

Properties

id: string

Id of a genre.

Genre

name: string

Name of the genre

Genre