/v1/market
One market in full
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/polymarket-api/v1/market" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/polymarket-api/v1/market", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/polymarket-api/v1/market");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/polymarket-api/v1/market",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"id": "703258",
"slug": "will-jesus-christ-return-before-2027",
"active": true,
"closed": false,
"source": "Polymarket",
"best_ask": 0.022,
"best_bid": 0.021,
"category": null,
"end_date": "2026-12-31T00:00:00Z",
"outcomes": [
{
"outcome": "Yes",
"probability_pct": 2.15
},
{
"outcome": "No",
"probability_pct": 97.85
}
],
"question": "Will Jesus Christ return before 2027?",
"start_date": "2025-11-25T18:08:21.296Z",
"volume_usd": 63651490.63,
"description": "This market will resolve to \"Yes\" if The Second Coming of Jesus Christ occurs by December 31, 2026, 11:59 PM ET. Otherwise, this market will resolve to \"No\".\n\nThe resolution source for this market will be a consensus of credible sources.",
"liquidity_usd": 787286.16,
"last_trade_price": 0.022
},
"meta": {
"timestamp": "2026-06-10T14:02:18.211Z",
"request_id": "81e4d832-89ca-40c0-a9aa-ffa2ab7b624b"
},
"status": "ok",
"message": "Market retrieved successfully",
"success": true
}