/v1/meta
Spec
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/marketcalendar-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/marketcalendar-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/marketcalendar-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/marketcalendar-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"source": "Nasdaq public calendar API (live)",
"service": "marketcalendar-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/splits": "Stock-split calendar on a date (date=YYYY-MM-DD): ratio, execution date.",
"GET /v1/earnings": "Earnings reporting on a date (date=YYYY-MM-DD, default today): session, EPS forecast, estimates, market cap.",
"GET /v1/dividends": "Dividend calendar on a date (date=YYYY-MM-DD): ex-dividend, record, payment dates, rate."
},
"description": "Live US corporate-events calendar from Nasdaq: for any trading day, the earnings reporting (session, consensus EPS forecast, number of estimates, market cap, year-ago EPS), the dividend calendar (ex-dividend, record and payment dates, rate, indicated annual dividend) and the stock-split calendar (ratio, execution date). Live, nothing stored. Distinct from price and quote APIs — this is the forward calendar of corporate events.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T11:40:03.972Z",
"request_id": "2cda2aa4-b75f-440c-80b3-75c6beab9f99"
},
"status": "ok",
"message": "Meta",
"success": true
}