Currently, the meta object returned by the List Conversation Comments endpoint only includes metadata in the body of a comment. While helpful, this information can already be extracted by parsing the body manually. To support richer interactions — particularly for bot integrations — it would be immensely helpful to have native support for reactions in the API. We’d greatly appreciate the addition of the following capabilities: 1- Retrieve reactions on a comment or post Ideally, this could be part of the response from the List Conversation Comments endpoint. However, since posts created via the API aren’t retrievable through that endpoint, there should also be a dedicated endpoint such as: GET /posts/{post_id}/reactions or GET /posts/{post_id} (with reactions included in the response) This would be especially useful for collecting user feedback — particularly when combined with a webhook rule (when reacted to a post / comment , enabling seamless and automated feedback workflows. However, it should definetely be available for post , not only for comment 2- React to a comment or post This would allow bots to engage with users more meaningfully — for example, adding a 👀 reaction to a mention. 3- Remove a reaction (optional but nice-to-have) Endpoints like DELETE /posts/{post_id}/reactions/{reaction_id} would round out the feature set. All in all , the following endpoints: GET /posts/{post_id}/reactions POST /posts/{post_id}/reactions DELETE /posts/{post_id}/reactions