action trakt_get_a_comment_or_reply { label: "Get a comment or reply" description: "#### 😁 Emojis\n\nReturns a single comment and indicates how many replies it has. Use [**/comments/:id/replies**](/reference/comments/replies/) to get the actual replies." provider: trakt method: GET path: "/comments/{id}" 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 } }