Skip to content

Fetch Comments by User Address

GET /comments/user_address/{address}

Server: https://gamma.openfish.fun

Tags: Comments


NameInTypeDescription
addresspathstringRequired. User wallet address
limitqueryintegerCap on results (default 25, upper bound 500)
offsetqueryintegerPagination offset (default 0)
orderquerystringField used for sorting (default created_at)
ascendingquerybooleanWhether to sort in ascending order (default false)

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

Terminal window
curl "https://gamma.openfish.fun/comments/user_address/0xabc123...?limit=10"