Vai al contenuto
GET /v1/events

Events (questions) grouping markets

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/kalshi-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "count": 50,
        "events": [
            {
                "title": "Will Elon Musk visit Mars in his lifetime?",
                "category": "World",
                "event_ticker": "KXELONMARS-99",
                "series_ticker": "KXELONMARS",
                "mutually_exclusive": false
            },
            {
                "title": "Who will the next Pope be?",
                "category": "Elections",
                "event_ticker": "KXNEWPOPE-70",
                "series_ticker": "KXNEWPOPE",
                "mutually_exclusive": true
            },
            {
                "title": "Will the world pass 2 degrees Celsius over pre-industrial levels before 2050?",
                "category": "Climate and Weather",
                "event_ticker": "KXWARMING-50",
                "series_ticker": "KXWARMING",
                "mutually_exclusive": false
            },
            {
                "title": "Will a human land on Mars before California starts high-speed rail?",
                "category": "Science and Technology",
                "event_ticker": "KXMARSVRAIL-50",
                "series_ticker": "KXMARSVRAIL",
                "mutually_exclusive": false
            },
            {
                "title": "Will a supervolcano erupt before 2050?",
                "category": "Climate and Weather",
                "event_ticker": "KXERUPTSUPER-0",
                "series_ticker": "KXERUPTSUPER",
                "mutually_exclusive": false
            },
            {
                "title": "Will humans colonize Mars before 2050?",
                "category": "Science and Technology",
                "event_ticker": "KXCOLONIZEMARS-50",
                "series_ticker": "KXCOLONIZEMARS",
                "mutually_exclusive": false
            },
            {
                "title": "Will Zohran Mamdani become President of the United States before 2045?",
                "category": "Elections",
                "event_ticker": "KXPERSONPRESMAM-45",
                "series_ticker": "KXPERSONPRESMAM",
                "mutually_exclusive": false
            },
            {
                "title": "Who will be the next DNC Chair?",
                "category": "Politics",
                "event_ticker": "KXNEXTDNCCHAIR-45",
                "series_ticker": "KXNEXTDNCCHAIR",
                "mutually_exclusive": true
            },
            {
                "title": "Who will be named as Xi Jinping's successor?",
                "category": "Elections",
                "event_ticker": "KXXISUCCESSOR-45JAN01",
                "series_ticker": "KXXISUCCESSOR",
                "mutually_exclusive": true
            },
            {
                "title": "Will Nick Fuentes become President of the United States before 2045?",
                "category": "Elections",
                "event_ticker": "KXPERSONPRESFUENTES-45",
                "series_ticker": "KXPERSONPRESFUENTES",
                "
…