/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}