Skip to content
GET /v1/meta

Spec

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/marketcalendar-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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_..."}
)

Example response

A real response from this endpoint, captured by the latest 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
}