cURL
curl --request GET \ --url https://api.data.adj.news/api/markets/stats \ --header 'Authorization: Bearer <token>'
{ "data": { "total_markets": 123, "active_markets": 123, "total_volume": 123, "avg_probability": 123, "platforms": [ { "platform": "<string>", "count": 123 } ], "categories": [ { "category": "<string>", "count": 123 } ] } }
Get overall statistics about markets
{ "data": { "total_markets": 12500, "active_markets": 4320, "total_volume": 1250000.75, "avg_probability": 0.47, "platforms": [ { "platform": "polymarket", "count": 5200 }, { "platform": "kalshi", "count": 3100 }, { "platform": "manifold", "count": 2800 }, // ... more platforms ], "categories": [ { "category": "politics", "count": 3800 }, { "category": "sports", "count": 2600 }, { "category": "entertainment", "count": 1200 }, // ... more categories ] } }
Enter your API key as the bearer token
Market statistics
The response is of type object.
object
Was this page helpful?