Ir al contenido
GET /v1/meta

Spec

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

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

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

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

{
    "data": {
        "note": "Trade prices are in cents (0-100) and also a probability (0-1): a price of 63 implies a 63% chance. Live prices come from the public trade tape; order-book snapshots are gated behind authentication upstream, so the markets directory carries structure (ticker, outcome, status, times), not quotes. A market is identified by its ticker, an event by its event_ticker.",
        "source": "Kalshi public trade API (api.elections.kalshi.com/trade-api/v2, live)",
        "service": "kalshi-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/events": "Events (questions) that group markets — category, series, mutual-exclusivity (status=open).",
            "GET /v1/trades": "Recent public trade tape — executed price (implied probability), size, taker side, time (filter ticker).",
            "GET /v1/markets": "Contract directory — ticker, yes outcome, status, open/close times (status=open; filter event_ticker, series_ticker, ticker)."
        },
        "description": "Live market data from Kalshi, the CFTC-regulated US event-contract exchange. Kalshi lists yes/no contracts that settle on real-world outcomes (elections, economics, weather, sports, world events) and the executed price is the market-implied probability. trades returns the recent public trade tape — executed price (implied probability), size, taker side and time — the live pulse of what is trading. events lists the events (questions) grouping markets, with category and series. markets is the contract directory — ticker, the yes outcome, status and open/close times — filterable by event, series or status. Live, no key, nothing stored. A regulated real-money event-contract venue distinct from the play-money and crypto prediction-market APIs.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T01:41:34.455Z",
        "request_id": "8f7b8343-a1d9-4973-bbcb-35c219ca40bf"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}