v1
latestOpenAPI 3.1.02026-07-243035381.4 MBPrediction API
Get wallet markets-traded count
/v4/data/prediction/wallets/{address}/markets-traded
50 credits per API call
Count of distinct markets a wallet has ever traded. Lifetime metric — useful as a quick activity signal alongside /wallets/{address}/value without paying the cost of pulling the full trade history.
Platform support
- Polymarket only. Kalshi wallets return 400.
Other notes
- traded is an integer count — the number of distinct markets, not the number of trades.
- user is the lowercased address.
get/v4/data/prediction/wallets/{address}/markets-traded
Path parameters
addressstring required
EVM wallet address — 0x-prefixed, 40 hex characters. Returned lowercased in response payloads. Non-EVM inputs (e.g. Kalshi user identifiers) return 400 from every wallets endpoint.
Example:0x56687bf447db6ffa42ffe2204a05edaa20f55839
Wallet address (0x + 40 hex). Kalshi addresses return 400.
Response
OK
Example response
{
"data": {
"user": "0x56687bf447db6ffa42ffe2204a05edaa20f55839",
"traded": 142
}
}