Fetch Comments by User Address
Endpoint
Section titled “Endpoint”GET /comments/user_address/{address}
Server: https://gamma.openfish.fun
Tags: Comments
Request Parameters
Section titled “Request Parameters”| Name | In | Type | Description |
|---|---|---|---|
address | path | string | Required. User wallet address |
limit | query | integer | Cap on results (default 25, upper bound 500) |
offset | query | integer | Pagination offset (default 0) |
order | query | string | Field used for sorting (default created_at) |
ascending | query | boolean | Whether to sort in ascending order (default false) |
Response
Section titled “Response”200 — A JSON array of Comment objects authored by the specified address.
[ { "id": "c123", "content": "Great market!", "userAddress": "0xabc...", "parentEntityType": "market", "parentEntityId": "12345", "createdAt": "2025-06-01T12:00:00Z" }]curl "https://gamma.openfish.fun/comments/user_address/0xabc123...?limit=10"