Upcoming US company earnings calendar — which companies report in a date window, with esti
Upcoming US company earnings calendar — which companies report in a date window, with estimated EPS and revenue, as JSON. Default is the next 7 days; filter with ?from=YYYY-MM-DD&to=YYYY-MM-DD (window up to 30 days) or ?symbol=AAPL. Use for: earnings season monitoring, upcoming earnings this week, portfolio earnings alerts, event-driven trading calendar, pre-earnings positioning. $0.005 USDC per call.
5000 (raw units)
price
6
calls / 30d
3
unique payers
2026-09-18
updated
Provider
api.tickersfeed.net · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xE82EBef57Fa5aF958B8ECB6843D4327d314F59E3",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"category": "stock-data",
"info": {
"input": {
"method": "GET",
"queryParams": {
"from": "2026-07-29",
"symbol": "AAPL",
"to": "2026-08-05"
},
"type": "http"
},
"output": {
"example": {
"count": 2,
"earnings": [
{
"date": "2026-07-31",
"eps_estimate": 1.6,
"hour": "amc",
"quarter": 3,
"revenue_estimate": 94000000000,
"symbol": "AAPL",
"year": 2026
}
],
"from": "2026-07-29",
"to": "2026-08-05"
},
"type": "json"
}
},
"routeTemplate": "/calendar/earnings",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"from": {
"description": "Start date YYYY-MM-DD (default today)",
"type": "string"
},
"symbol": {
"description": "Optional ticker filter (e.g. AAPL)",
"type": "string"
},
"to": {
"description": "End date YYYY-MM-DD (default +7 days, window ≤30d)",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.tickersfeed.net/calendar/earnings" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.tickersfeed.net/calendar/earnings");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.tickersfeed.net/calendar/earnings")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4143.json, and this resource appears in /discovery/resources and /discovery/search.