Naar de inhoud
GET /v1/splits

Stock-split calendar

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "date": "2026-06-10",
        "type": "splits",
        "count": 6,
        "events": [
            {
                "name": "Global Bio-chem Technology Group Company Limited ADR",
                "ratio": "1 : 10",
                "symbol": "GBCMY",
                "execution_date": "6/26/2026",
                "announcement_date": null
            },
            {
                "name": "Siemens Energy AG",
                "ratio": "5 : 1",
                "symbol": "SMERY",
                "execution_date": "6/22/2026",
                "announcement_date": null
            },
            {
                "name": "Chino Commercial Bancorp",
                "ratio": "6 : 5",
                "symbol": "CCBC",
                "execution_date": "6/18/2026",
                "announcement_date": null
            },
            {
                "name": "Worldline ADR",
                "ratio": "1 : 40",
                "symbol": "WRDLY",
                "execution_date": "6/17/2026",
                "announcement_date": null
            },
            {
                "name": "KLA Corporation ",
                "ratio": "10:1",
                "symbol": "KLAC",
                "execution_date": "6/12/2026",
                "announcement_date": null
            },
            {
                "name": "Abound Energy Inc Com",
                "ratio": "1 : 3",
                "symbol": "ZAIRF",
                "execution_date": "6/10/2026",
                "announcement_date": null
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-09T11:40:03.829Z",
        "request_id": "7a94c829-525b-4eb5-90a5-d4d6315cbfe9"
    },
    "status": "ok",
    "message": "Splits calendar retrieved successfully",
    "success": true
}