Μετάβαση στο περιεχόμενο
GET /v1/earnings

Companies reporting earnings on a date

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/earnings-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

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