Ir al contenido
GET /v1/meta

Spec

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/marketcalendar-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}