action trakt_get_recently_created_comments { label: "Get recently created comments" description: "#### 📄 Pagination ✨ Extended Info 😁 Emojis\n\nReturns the most recently written comments across all of Trakt. You can optionally filter by the `comment_type` and media `type` to limit what gets returned. If you want to `include_replies` that will return replies in place alongside top level comments." provider: trakt method: GET path: "/comments/recent/{comment_type}/{type}" encoding: json input: { type: "object" properties: { comment_type: { type: "string" enum: ["all", "reviews", "shouts"] } include_replies: { type: "string" } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } type: { type: "string" enum: ["all", "movies", "shows", "seasons", "episodes", "lists"] } } required: ["comment_type", "type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }