/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/manifold-api/v1/market" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/manifold-api/v1/market", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/manifold-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/manifold-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": "L8EuhySAdp",
"url": "https://manifold.markets/MikhailTal/catl-receives-license-renewal-for-y-UAuzRyILcp",
"slug": "catl-receives-license-renewal-for-y-UAuzRyILcp",
"source": "Manifold",
"creator": "MikhailTal",
"question": "CATL receives license renewal for Yichun Lithium mine by end of Feb 2027?",
"close_time": "2027-02-28T23:59:00.000Z",
"resolution": null,
"description": "Resolution criteria\n\nThis market resolves to YES if, by 23:59 China Standard Time (UTC+8) on February 28, 2027, CATL (Contemporary Amperex Technology Co., Limited) or its controlled subsidiaries receive official government approval that renews or reissues the mining license authorizing production to resume at the Jianxiawo (枧下窝) lithium-bearing ceramic clay mine in Yichun, Jiangxi Province.\n\nOtherwise, this market resolves to NO.\n\nAcceptable Proof & Verification Sources:\n\nOfficial corporate regulatory filings or announcements from CATL (SZSE: 300750) on CNINFO or the Shenzhen Stock Exchange (S",
"is_resolved": false,
"volume_mana": 49297.97,
"created_time": "2026-06-09T14:12:01.950Z",
"creator_name": "Mikhail Tal",
"outcome_type": "BINARY",
"liquidity_mana": 105000,
"unique_bettors": 38,
"probability_pct": 57.48
},
"meta": {
"timestamp": "2026-06-10T14:02:13.597Z",
"request_id": "53a20950-5a97-4458-b7b4-6b6fa958db34"
},
"status": "ok",
"message": "Market retrieved successfully",
"success": true
}