Market-wide upcoming earnings calendar
GET
/api/v1/public/calendar/earnings3 credits / callAPI key required
Forward-looking earnings calendar across the tracked ticker universe, sorted ascending by event date. Paginated.
Parameters
Query
ISO date YYYY-MM-DD (default today − 30d)
ISO date YYYY-MM-DD (default today + 90d)
Maximum number of results (1-500, default 100)
Number of results to skip (default 0)
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/calendar/earnings?from=2024-01-01&to=2024-12-31&limit=10&offset=0' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/calendar/earnings?from=2024-01-01&to=2024-12-31&limit=10&offset=0example · 200
{
"data": {
"events": [
{
"id": "evt-earnings-NBTRF-2026-06-01",
"category": "earnings",
"date": "2026-06-01",
"ticker": "NBTRF",
"title": "NBTRF Earnings Report",
"description": "Earnings date announced",
"metadata": {
"symbol": "NBTRF",
"eps": -0.00717,
"epsEstimated": null,
"revenue": null,
"revenueEstimated": null
}
},
{
"id": "evt-earnings-LQRCF-2026-06-01",
"category": "earnings",
"date": "2026-06-01",
"ticker": "LQRCF",
"title": "LQRCF Earnings Report",
"description": "Earnings date announced",
"metadata": {
"symbol": "LQRCF",
"eps": -0.02137,
"epsEstimated": null,
"revenue": null,
"revenueEstimated": null
}
},
{
"id": "evt-earnings-TRLEF-2026-06-01",
"category": "earnings",
"date": "2026-06-01",
"ticker": "TRLEF",
"title": "TRLEF Earnings Report",
"description": "Earnings date announced",
"metadata": {
"symbol": "TRLEF",
"eps": -0.0104,
"epsEstimated": null,
"revenue": null,
"revenueEstimated": null
}
}
],
"total": 989,
"limit": 100,
"offset": 0
}
}