GET/api/earnings
Earnings dates between two days, in date order
- fromFirst day, YYYY-MM-DD (default today)
- toLast day, YYYY-MM-DD (default today + 14)
- limitItems per page, 1 to 200
- offsetItems to skip, for the next page
Shell
curl -s "https://quarterly.fru.dev/api/earnings?from=2026-10-20&to=2026-10-31&limit=5"Sample response
JSON
{
"from": "2026-10-20",
"to": "2026-10-31",
"earnings": [
{
"id": 4165,
"companyId": "netflix",
"date": "2026-10-20",
"time": "amc",
"status": "estimated",
"periodKey": "2026-09",
"periodEnd": "",
"fiscalYear": 2026,
"fiscalQuarter": 3,
"source": "nasdaq",
"sourceUrl": "https://www.nasdaq.com/market-activity/earnings?date=2026-10-20",
"unverified": false,
"note": "Expected date on the Nasdaq earnings calendar (data from Zacks). Not yet announced by the company.",
"ticker": "NFLX"
},
{
"id": 4167,
"companyId": "manhattan-associates",
"date": "2026-10-20",
"time": "unknown",
"status": "estimated",
"periodKey": "2026-09",
"periodEnd": "",
"fiscalYear": 2026,
"fiscalQuarter": 3,
"source": "nasdaq",
"sourceUrl": "https://www.nasdaq.com/market-activity/earnings?date=2026-10-20",
"unverified": false,
"note": "Expected date on the Nasdaq earnings calendar (data from Zacks). Not yet announced by the company.",
"ticker": "MANH"
}
],
"total": 34,
"limit": 5,
"offset": 0,
"next": "/api/earnings?from=2026-10-20&to=2026-10-31&limit=5&offset=5",
"note": "Not investment advice."
}