action trakt_get_season_stats { label: "Get season stats" description: "Returns lots of season stats." provider: trakt method: GET path: "/shows/{id}/seasons/{season}/stats" encoding: json input: { type: "object" properties: { id: { type: "string" } season: { type: "integer" } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } } required: ["id", "season"] additionalProperties: false } output: { type: "object" additionalProperties: true } }