Skip to content
GET /v1/earnings

Companies reporting earnings on a date

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/earnings-api

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

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "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",
  
…