GET
/v1/markets/liveList All Markets
Returns all currently tracked prediction markets with real-time status, expiry info, token IDs, and category information. Optionally filter by category or subcategory.
Query Parameters
categorystringFilter by category
subcategorystringFilter by subcategory. Sports: NBA, NFL, EPL, FIFA (2026 World Cup), IPL (2026. Also BTC/ETH/SOL/XRP, FOMC, NFP, SPX, Elon, etc. Try category=sports + subcategory=FIFA.
cryptostringFilter to a single coin. Only crypto markets carry this field, so it also excludes non-crypto categories.
timeframestringFilter by timeframe. Combine with crypto to isolate one series, e.g. crypto=BTC + timeframe=5m.
Response
200401403404500
Successful Response
Code Snippet
curl -X GET "https://api.resolvedmarkets.com/v1/markets/live" \ -H "X-API-Key: YOUR_API_KEY"
200
[
{
"conditionId": "0x778be094...",
"category": "crypto",
"subcategory": "BTC",
"label": "Bitcoin 5m Up or Down?",
"tokenIds": ["1234...", "5678..."],
"outcomes": ["UP", "DOWN"],
"configId": "crypto-updown",
"slug": "btc-updown-5m-...",
"expired": false,
"expiresIn": 234000
},
{
"conditionId": "0xabc123...",
"category": "sports",
"subcategory": "NBA",
"label": "Lakers vs Celtics - Winner",
"tokenIds": ["9012...", "3456..."],
"outcomes": ["Yes", "No"],
"configId": "nba",
"slug": "lakers-celtics-winner-...",
"expired": false,
"expiresIn": 7200000
}
]
