action trakt_get_followers { label: "Get followers" description: "#### 🔓 OAuth Optional ✨ Extended Info\n\nReturns all followers including when the relationship began." provider: trakt method: GET path: "/users/{id}/followers" 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 } }