/v1/event
One event + every sub-market probability
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/polymarket-api/v1/event" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/polymarket-api/v1/event", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/polymarket-api/v1/event");
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/event",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"id": "30615",
"slug": "world-cup-winner",
"title": "World Cup Winner ",
"source": "Polymarket",
"markets": [
{
"id": "558934",
"question": "Will Spain win the 2026 FIFA World Cup?",
"volume_usd": 35686861.16,
"probability_pct": 16.35
},
{
"id": "558936",
"question": "Will France win the 2026 FIFA World Cup?",
"volume_usd": 42729871.37,
"probability_pct": 16.05
},
{
"id": "558940",
"question": "Will Portugal win the 2026 FIFA World Cup?",
"volume_usd": 37042929.43,
"probability_pct": 10.95
},
{
"id": "558935",
"question": "Will England win the 2026 FIFA World Cup?",
"volume_usd": 30906456.24,
"probability_pct": 10.85
},
{
"id": "558938",
"question": "Will Argentina win the 2026 FIFA World Cup?",
"volume_usd": 32421221.42,
"probability_pct": 8.55
},
{
"id": "558937",
"question": "Will Brazil win the 2026 FIFA World Cup?",
"volume_usd": 32309036.87,
"probability_pct": 8.45
},
{
"id": "558939",
"question": "Will Germany win the 2026 FIFA World Cup?",
"volume_usd": 34607262.31,
"probability_pct": 5.25
},
{
"id": "558941",
"question": "Will Netherlands win the 2026 FIFA World Cup?",
"volume_usd": 36567087.95,
"probability_pct": 4.05
},
{
"id": "558951",
"question": "Will Norway win the 2026 FIFA World Cup?",
"volume_usd": 36149011.82,
"probability_pct": 2.45
},
{
"id": "558946",
"question": "Will Belgium win the 2026 FIFA World Cup?",
"volume_usd": 37733121.27,
"probability_pct": 2.15
},
{
"id": "558947",
"question": "Will Colombia win the 2026 FIFA World Cup?",
"volume_usd": 37193361.55,
"probability_pct": 1.95
},
{
"id": "558949",
"question": "Will Japan win the 2026 FIFA World Cup?",
"volume_usd": 38818836.65,
"probability_pct": 1.75
},
{
"id": "558963",
"question": "Will Morocco win the 2026 FIFA World Cup?",
"volume_usd": 41611869.51,
"probability_pct": 1.75
},
…