action trakt_get_stats { label: "Get stats" description: "#### 🔓 OAuth Optional\n\nReturns stats about the movies, shows, and episodes a user has watched, collected, and rated." provider: trakt method: GET path: "/users/{id}/stats" 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 } }