Zum Inhalt springen
GET /v1/markets

Most active markets with probabilities

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/polymarket-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/polymarket-api/v1/markets" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/polymarket-api/v1/markets", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/polymarket-api/v1/markets");
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/markets",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "sort": "volume",
        "count": 25,
        "source": "Polymarket",
        "markets": [
            {
                "id": "703258",
                "slug": "will-jesus-christ-return-before-2027",
                "active": true,
                "closed": false,
                "best_ask": 0.022,
                "best_bid": 0.021,
                "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?",
                "volume_usd": 63651490.63,
                "liquidity_usd": 787286.16,
                "last_trade_price": 0.022
            },
            {
                "id": "558960",
                "slug": "will-uzbekistan-win-the-2026-fifa-world-cup-773",
                "active": true,
                "closed": false,
                "best_ask": 0.001,
                "best_bid": null,
                "end_date": "2026-07-20T00:00:00Z",
                "outcomes": [
                    {
                        "outcome": "Yes",
                        "probability_pct": 0.05
                    },
                    {
                        "outcome": "No",
                        "probability_pct": 99.95
                    }
                ],
                "question": "Will Uzbekistan win the 2026 FIFA World Cup?",
                "volume_usd": 59009947.19,
                "liquidity_usd": 11183243.86,
                "last_trade_price": 0.001
            },
            {
                "id": "558981",
                "slug": "will-congo-dr-win-the-2026-fifa-world-cup",
                "active": true,
                "closed": false,
                "best_ask": 0.002,
                "best_bid": 0.001,
                "end_date": "2026-07-20T00:00:00Z",
                "outcomes": [
                    {
                        "outcome": "Yes",
                        "probability_pct": 0.15
                    },
                    {
                        "outcome": "No",
                        "probability_pct": 99.85
                    }
                ],
                "question": "Will Congo DR win the 2026 FIFA World Cup?",
                "volume_usd": 56485232.68,
                "liquidity_usd": 9328785.45,
                "last_trade_price": 0.001
            },
            {
                "id": "558943",
                "slug": "will-usa-win-the-2026-fifa-world-cup-467",
                "active": true,
                "closed": false,
                "best_ask": 0.012,
                "best_bid": 0.011,
                "end_date": "2026-07-20T00:00:00Z",
                "outcomes": [
                    {
                 
…