/v1/meta
Service metadata
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/earnings-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/earnings-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/earnings-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/earnings-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": {
"note": "The earnings endpoint takes date=YYYY-MM-DD (defaults to today, US Eastern). Reporting time is pre-market, after-hours or unspecified. EPS and market cap are numbers; missing values are null. Earnings rows are ranked by market cap.",
"source": "Nasdaq public calendar feed (api.nasdaq.com/api/calendar, live)",
"service": "earnings-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/splits": "Upcoming stock splits with ratio and execution date.",
"GET /v1/earnings": "Companies reporting earnings on a date (date=2026-06-12, default today)."
},
"description": "Live US corporate-events calendar from Nasdaq — the earnings and stock-splits calendar. earnings = every company reporting on a date (ticker, name, consensus EPS forecast, reporting time before/after market, market cap, number of analyst estimates, fiscal quarter ending, prior-year EPS and report date); splits = upcoming stock splits (ticker, name, ratio, execution date). Live, no key, nothing stored. Distinct from the economic-calendar, IPO-calendar and dividend APIs.",
"upstream_status": "ok",
"todays_earnings_count": 36
},
"meta": {
"timestamp": "2026-06-12T01:42:34.706Z",
"request_id": "5965295c-166b-4048-a919-f3ce6f191475"
},
"status": "ok",
"message": "Meta",
"success": true
}