action trakt_get_all_season_comments { label: "Get all season comments" description: "#### 📄 Pagination 😁 Emojis\n\nReturns all top level comments for a season. By default, the `newest` comments are returned first. Other sorting options include `oldest`, most `likes`, most `replies`, `highest` rated, `lowest` rated, most `plays`, and highest `watched` percentage." provider: trakt method: GET path: "/shows/{id}/seasons/{season}/comments/{sort}" encoding: json input: { type: "object" properties: { id: { type: "string" } season: { type: "integer" } sort: { type: "string" enum: ["newest", "oldest", "likes", "replies", "highest", "lowest", "plays", "watched"] } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } } required: ["id", "season", "sort"] additionalProperties: false } output: { type: "object" additionalProperties: true } }