Get holders
Endpoint
Section titled “Endpoint”GET /holders
Server: https://data.openfish.fun (port 3003)
Tags: Core
Lists the largest token holders for one or more markets, grouped by token.
Parameters
Section titled “Parameters”| Name | In | Type | Default | Description |
|---|---|---|---|---|
market | query | string | Required. Comma-separated condition IDs | |
limit | query | integer | 20 | Max holders per token (max 20) |
minBalance | query | integer | 1 | Minimum balance threshold |
Response
Section titled “Response”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://..." } ] }]Example
Section titled “Example”curl "https://data.openfish.fun/holders?market=0xdef123...&limit=10"