action trakt_get_a_single_episode_for_a_show { label: "Get a single episode for a show" description: "#### ✨ Extended Info\n\nReturns a single episode's details. All date and times are in UTC and were calculated using the episode's `air_date` and show's `country` and `air_time`.\n\n**Note:** If the `first_aired` is unknown, it will be set to `null`." provider: trakt method: GET path: "/shows/{id}/seasons/{season}/episodes/{episode}" encoding: json input: { type: "object" properties: { episode: { type: "integer" } id: { type: "string" } season: { type: "integer" } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } } required: ["episode", "id", "season"] additionalProperties: false } output: { type: "object" additionalProperties: true } }