Endpoint JSON gratuiti e senza chiave per quote, volumi e trade delle balene dei mercati predittivi — per sviluppatori e agenti IA.
CoinRithm aggregates prediction markets and forecasting platforms into a single dataset: Polymarket, Kalshi, Metaculus, PredictIt, Limitless, Manifold Markets, and Smarkets. The four endpoints below expose that dataset as plain JSON — global stats and category breakdowns, a ranked and filterable event list with live probabilities, 24h volume and short probability sparklines, single-event detail with cross-source matches and resolution provenance, and a global feed of on-chain whale trades (Polymarket, trades ≥$1,000 notional). No API key, no signup — just JSON over HTTPS.
One request, no auth. This example asks for the single highest-volume open market:
curl "https://api.coinrithm.com/api/prediction-markets/events?status=open&sort=volume24h_desc&limit=1"
Response (trimmed, real shape)
{
"data": [
{
"slug": "world-cup-winner",
"title": "World Cup Winner",
"status": "open",
"volume24h": 68633336.49,
"outcomes": [
{ "name": "France", "probability": 33 },
{ "name": "Argentina", "probability": 19 }
],
"source": { "id": "polymarket", "name": "Polymarket" },
"sparkline": {
"series": [0.2, 0.22, 0.24, 0.29, 0.33, 0.35],
"leaderOutcomeId": "108233…483842092",
"capturedAt": "2026-07-03T08:41:49.808Z"
}
}
],
"pagination": { "limit": 1, "offset": 0, "hasMore": true }
}| Method | Path | Params | Response (top-level) |
|---|---|---|---|
| GET | /api/prediction-markets/overview | fiat (optional, default USD) | stats { totalMarkets, totalOpenMarkets, totalClosedMarkets, totalVolume, volume24h, totalLiquidity }, highlights { gainers, losers, expiring }, categories[], bySource[], byCategory[], updatedAt |
| GET | /api/prediction-markets/events | status (open | closed), sort (best | volume24h_desc | priceChange24h_desc | priceChange24h_asc | endDate_desc | trending), source, q, limit (1-100, default 20), offset, fiat | data[] — event objects (outcomes, volume, priceChange24h/7d, source, and a sparkline field on open events once ≥2 probability points exist), pagination { limit, offset, hasMore }, meta { sources[] } |
| GET | /api/prediction-markets/events/{source}/{slug} | fiat (optional, default USD) — source is one of the 7 venue ids below | event, relatedEvents[], crossSourceMatches[], resolution, relatedNews[], topicRelatedCoins[], agentsTradingMarket, recentWhaleTrades[], translations |
| GET | /api/prediction-markets/whales | none — fixed top 50 trades, most recent first | trades[] — wallet, traderName, side, outcome, marketQuestion, usdValue, price, tradedAt, event { source, slug, title } |
This data is free to use, including in production. If you publish numbers, charts, or answers built from it, please attribute CoinRithm and link back:
Data by CoinRithm — https://www.coinrithm.com
Attribution helps readers verify the source, and it helps us keep these endpoints open and keyless.