action trakt_get_single_season_for_a_show { label: "Get single season for a show" description: "#### ✨ Extended Info\n\nReturns all episodes for a specific season of a show.\n\n#### Translations\n\nIf you'd like to included translated episode titles and overviews in the response, include the `translations` parameter in the URL. Include all languages by setting the parameter to `all` or use a specific 2 digit country language code to further limit it.\n\n**Note:** This returns a lot of data, so please only use this parameter if you actually need it!" provider: trakt method: GET path: "/shows/{id}/seasons/{season}" encoding: json input: { type: "object" properties: { id: { type: "string" } season: { type: "integer" } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } translations: { type: "string" } } required: ["id", "season"] additionalProperties: false } output: { type: "object" additionalProperties: true } }