Ir al contenido
GET /v1/market

Single market detail (latest active market if no slug given)

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/limitless-api

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/limitless-api/v1/market" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/limitless-api/v1/market", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/limitless-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/limitless-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": 247922,
        "slug": "btc-up-or-down-5-min-1781520910049",
        "tags": [
            "Lumy",
            "Recurring",
            "Minutely",
            "Minutes 5"
        ],
        "title": "BTC Up or Down - 5 Min",
        "status": "FUNDED",
        "volume": 0,
        "creator": "Limitless",
        "expired": false,
        "deadline": "Jun 15, 2026",
        "no_price": 0.49,
        "yes_price": 0.51,
        "categories": [
            "Minutely",
            "5 min"
        ],
        "collateral": "USDC",
        "description": "This market will resolve to \"Up\" if the Chainlink BTC/USD price on June 15, 2026, at 11:20 UTC is greater than or equal to the price captured on June 15, 2026, at 11:15 UTC. Otherwise, this market will resolve to \"Down\".Resolution source: Chainlink BTC/USD data stream. Other exchanges, spot markets, and oracles will not be used.If Chainlink is briefly missing data on June 15, 2026, at 11:20 UTC, the next available price within 5 seconds will be used. In the rare event of a longer Chainlink outage, the market will be resolved manually by the Limitless team using the closest available Chainlink ",
        "market_type": "single",
        "condition_id": "0x2657edf60dc53d8337a5b34d75c91f7c7b27dc35c1764870550139ab9b8b9596",
        "trade_prices": {
            "buy": {
                "limit": [
                    0.05,
                    0.03
                ],
                "market": [
                    0.97,
                    0.95
                ]
            },
            "sell": {
                "limit": [
                    0.97,
                    0.95
                ],
                "market": [
                    0.05,
                    0.03
                ]
            }
        },
        "expiration_timestamp": 1781522400000
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:48.787Z",
        "request_id": "cf6e6fe7-75c7-4549-9f30-875b054d82c9"
    },
    "status": "ok",
    "message": "Market retrieved successfully",
    "success": true
}