Naar de inhoud
GET /v1/trades

Recent public trade tape with prices

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/kalshi-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "count": 50,
        "source": "Kalshi",
        "trades": [
            {
                "time": "2026-06-12T01:41:33.929026Z",
                "count": 6,
                "ticker": "KXMLBGAME-26JUN111905SEABAL-SEA",
                "taker_side": "yes",
                "no_price_cents": 85,
                "yes_price_cents": 15,
                "yes_probability": 0.15
            },
            {
                "time": "2026-06-12T01:41:33.834731Z",
                "count": 27.06,
                "ticker": "KXMLBSPREAD-26JUN111840LADPIT-LAD4",
                "taker_side": "no",
                "no_price_cents": 88,
                "yes_price_cents": 12,
                "yes_probability": 0.12
            },
            {
                "time": "2026-06-12T01:41:33.81759Z",
                "count": 37,
                "ticker": "KXWCGAME-26JUN11KORCZE-KOR",
                "taker_side": "yes",
                "no_price_cents": 62,
                "yes_price_cents": 38,
                "yes_probability": 0.38
            },
            {
                "time": "2026-06-12T01:41:33.813501Z",
                "count": 55.59,
                "ticker": "KXWCSCORE-26JUN11KORCZE-KOR1CZE1",
                "taker_side": "yes",
                "no_price_cents": 83,
                "yes_price_cents": 17,
                "yes_probability": 0.17
            },
            {
                "time": "2026-06-12T01:41:33.753918Z",
                "count": 78.49,
                "ticker": "KXMLBGAME-26JUN111840LADPIT-PIT",
                "taker_side": "yes",
                "no_price_cents": 88,
                "yes_price_cents": 12,
                "yes_probability": 0.12
            },
            {
                "time": "2026-06-12T01:41:33.750607Z",
                "count": 0.43,
                "ticker": "KXATPCHALLENGERMATCH-26JUN11SWEHAR-SWE",
                "taker_side": "yes",
                "no_price_cents": 72,
                "yes_price_cents": 28,
                "yes_probability": 0.28
            },
            {
                "time": "2026-06-12T01:41:33.750607Z",
                "count": 2.57,
                "ticker": "KXATPCHALLENGERMATCH-26JUN11SWEHAR-SWE",
                "taker_side": "yes",
                "no_price_cents": 72,
                "yes_price_cents": 28,
                "yes_probability": 0.28
            },
            {
                "time": "2026-06-12T01:41:33.741945Z",
                "count": 11.26,
                "ticker": "KXMLBGAME-26JUN111905SEABAL-SEA",
                "taker_side": "yes",
                "no_price_cents": 85,
                "yes_price_cents": 15,
                "yes_probability": 0.15
            },
            {
                "time": "2026-06-12T01:41:33.741005Z",
                "count": 78.49,
                "ticker": "KXMVESPORTSMULTIGAMEEXTENDED-S2026B16F1EAB4CA-2749DD222E7",
                "taker_side": "yes",
                "no_price_cents": 88,
  
…