action trakt_get_likes { label: "Get likes" description: "#### 🔒 OAuth Optional 📄 Pagination\n\nGet items a user likes. This will return an array of standard media objects. You can optionally limit the `type` of results to return.\n\n#### Comment Media Objects\n\nIf you add `?extended=comments` to the URL, it will return media objects for each comment like.\n\n**Note:** This returns a lot of data, so please only use this extended parameter if you actually need it!" provider: trakt method: GET path: "/users/{id}/likes/{type}" encoding: json input: { type: "object" properties: { id: { type: "string" } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } type: { type: "string" enum: ["comments", "lists"] } } required: ["id", "type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }