Skip to content

Get holders

GET /holders

Server: https://data.openfish.fun (port 3003)

Tags: Core

Lists the largest token holders for one or more markets, grouped by token.


NameInTypeDefaultDescription
marketquerystringRequired. Comma-separated condition IDs
limitqueryinteger20Max holders per token (max 20)
minBalancequeryinteger1Minimum balance threshold

200 — A JSON array of MetaHolder objects (one per token).

[
{
"token": "token123",
"holders": [
{
"proxyWallet": "0xabc...",
"asset": "token123",
"amount": "500.0",
"outcomeIndex": 0,
"name": "Alice",
"profileImage": "https://..."
}
]
}
]

Terminal window
curl "https://data.openfish.fun/holders?market=0xdef123...&limit=10"