Fetch a Comment by ID
Endpoint
Section titled “Endpoint”GET /comments/{id}
Server: https://gamma.openfish.fun
Tags: Comments
Path Parameters
Section titled “Path Parameters”| Name | In | Type | Description |
|---|---|---|---|
id | path | string | Required. Comment ID |
Response
Section titled “Response”200 — A JSON array containing the matching Comment object, or an empty array when no comment exists with that ID.
[ { "id": "c123", "content": "Great market!", "userAddress": "0xabc...", "parentEntityType": "market", "parentEntityId": "12345", "reactionCount": 5, "createdAt": "2025-06-01T12:00:00Z" }]curl "https://gamma.openfish.fun/comments/c123"