cURL
curl --request GET \ --url https://api.polyhistorical.com/v1/markets/{slug}
{ "slug": "<string>", "market_id": "<string>", "event_id": "<string>", "market_type": "<string>", "start_time": "<string>", "end_time": "<string>", "btc_price_start": 123, "btc_price_end": 123, "condition_id": "<string>", "clob_token_up": "<string>", "clob_token_down": "<string>", "winner": "<string>", "final_volume": 123, "final_liquidity": 123, "resolved_at": "<string>", "created_at": "<string>", "updated_at": "<string>" }
Get a single market by its slug
GET https://api.polyhistorical.com/v1/markets/{slug}
btc-updown-5m-1774581000
BTC
ETH
SOL
curl -H "X-API-Key: YOUR_API_KEY" \ "https://api.polyhistorical.com/v1/markets/btc-updown-5m-1774581000?coin=BTC"
{ "slug": "btc-updown-5m-1774581000", "market_id": "1724470", "event_id": "308810", "market_type": "5m", "start_time": "2026-03-27T03:10:00Z", "end_time": "2026-03-27T03:15:00Z", "btc_price_start": 87234.50, "btc_price_end": null, "condition_id": "0xabc123", "clob_token_up": "71321", "clob_token_down": "71322", "winner": null, "final_volume": null, "final_liquidity": null, "resolved_at": null, "created_at": "2026-03-27T03:09:00Z", "updated_at": "2026-03-27T03:10:05Z" }