action trakt_get_related_shows { label: "Get related shows" description: "#### 📄 Pagination ✨ Extended Info\n\nReturns related and similar shows." provider: trakt method: GET path: "/shows/{id}/related" 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 } }