/v1/earnings
Companies reporting earnings on a date
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/earnings" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/earnings-api/v1/earnings", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/earnings-api/v1/earnings");
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/earnings",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"date": "2026-06-12",
"count": 17,
"market": "US",
"source": "Nasdaq",
"calendar": "earnings",
"earnings": [
{
"name": "Sibanye Stillwater Limited",
"symbol": "SBSW",
"eps_forecast": null,
"last_year_eps": null,
"num_estimates": null,
"market_cap_usd": 6425387689,
"reporting_time": "unspecified",
"fiscal_quarter_ending": "Mar/2026",
"last_year_report_date": null
},
{
"name": "High Templar Tech Limited",
"symbol": "HTT",
"eps_forecast": null,
"last_year_eps": 0.12,
"num_estimates": null,
"market_cap_usd": 461192007,
"reporting_time": "unspecified",
"fiscal_quarter_ending": "Mar/2026",
"last_year_report_date": null
},
{
"name": "GDEV Inc.",
"symbol": "GDEV",
"eps_forecast": 0.67,
"last_year_eps": 0.77,
"num_estimates": 1,
"market_cap_usd": 242544985,
"reporting_time": "unspecified",
"fiscal_quarter_ending": "Mar/2026",
"last_year_report_date": "5/16/2025"
},
{
"name": "Waldencast plc",
"symbol": "WALD",
"eps_forecast": null,
"last_year_eps": null,
"num_estimates": 1,
"market_cap_usd": 239845961,
"reporting_time": "unspecified",
"fiscal_quarter_ending": "Mar/2026",
"last_year_report_date": null
},
{
"name": "Enlivex Ltd.",
"symbol": "ENLV",
"eps_forecast": null,
"last_year_eps": null,
"num_estimates": 1,
"market_cap_usd": 162129372,
"reporting_time": "unspecified",
"fiscal_quarter_ending": "Mar/2026",
"last_year_report_date": "5/30/2025"
},
{
"name": "51Talk Online Education Group",
"symbol": "COE",
"eps_forecast": null,
"last_year_eps": null,
"num_estimates": null,
"market_cap_usd": 132160930,
"reporting_time": "pre-market",
"fiscal_quarter_ending": "Mar/2026",
"last_year_report_date": null
},
{
"name": "Bluerock Homes Trust, Inc.",
"symbol": "BHM",
"eps_forecast": null,
"last_year_eps": 0.1,
"num_estimates": 1,
"market_cap_usd": 124480533,
"reporting_time": "unspecified",
…