GET/v1/markets/live

List 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

categorystring
Filter by category (crypto, sports, economics, weather, social, equities)
subcategorystring
Filter by subcategory (BTC, NBA, FOMC, NYC, Elon, SPX, etc.)

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
  }
]
List All Markets — API Docs | Resolved Markets