action trakt_get_show_recommendations { label: "Get show recommendations" description: "#### 🔒 OAuth Required ✨ Extended Info\n\nTV show recommendations for a user. By default, `10` results are returned. You can send a `limit` to get up to `100` results per page. Set `ignore_collected=true` to filter out shows the user has already collected or `ignore_watchlisted=true` to filter out shows the user has already watchlisted." provider: trakt method: GET path: "/recommendations/shows" encoding: json input: { type: "object" properties: { ignore_collected: { type: "string" enum: ["true", "false"] } ignore_watchlisted: { type: "string" enum: ["true", "false"] } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }