action trakt_get_episode_ratings { label: "Get episode ratings" description: "Returns rating (between 0 and 10) and distribution for an episode." provider: trakt method: GET path: "/shows/{id}/seasons/{season}/episodes/{episode}/ratings" 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 } }