Ir al contenido
GET /v1/market

One market in full

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/polymarket-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}