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