Skip to content

Fetch a Comment by ID

GET /comments/{id}

Server: https://gamma.openfish.fun

Tags: Comments


NameInTypeDescription
idpathstringRequired. Comment ID

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"
}
]

Terminal window
curl "https://gamma.openfish.fun/comments/c123"