action trakt_get_next_episode { label: "Get next episode" description: "#### ✨ Extended Info\n\nReturns the next scheduled to air episode. If no episode is found, a `204` HTTP status code will be returned." provider: trakt method: GET path: "/shows/{id}/next_episode" encoding: json input: { type: "object" properties: { id: { type: "string" } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }