Earnings calendar for upcoming US stock reports — earnings date, EPS estimate, pre/post-ma
Earnings calendar for upcoming US stock reports — earnings date, EPS estimate, pre/post-market timing. Filter by ticker for per-company lookups, or scan a date window (1–90 days ahead) for calendar-driven research automation. Data: Alpha Vantage 3-month calendar, cached 2 hr.
10000 (raw units)
price
11
calls / 30d
10
unique payers
2026-09-17
updated
Provider
the-stall.intuitek.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x03d773c52B67993e60Ecb3134b17436fE03B584c",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"as_of": "example",
"earnings": [
{
"currency": "example",
"eps_estimate": 1,
"fiscal_period_end": "example",
"name": "example",
"report_date": "example",
"symbol": "example",
"timing": "example"
}
],
"total": 1,
"window_end": "example"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"days_ahead": {
"default": 7,
"description": "Calendar days ahead to include (1–90, default 7).",
"maximum": 90,
"minimum": 1,
"type": "integer"
},
"limit": {
"default": 20,
"description": "Max results (default 20, max 100). Ignored when symbol is provided (returns all matches).",
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"symbol": {
"description": "Optional. Ticker to filter by (e.g. NVDA, AAPL). Omit to get all earnings in the window.",
"type": "string"
}
},
"required": [],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"as_of": {
"description": "ISO-8601 timestamp of this response.",
"type": "string"
},
"earnings": {
"items": {
"properties": {
"currency": {
"description": "Reporting currency (usually USD).",
"type": "string"
},
"eps_estimate": {
"description": "Consensus EPS estimate (null if not available).",
"type": [
"number",
"null"
]
},
"fiscal_period_end": {
"description": "Fiscal quarter/year end date.",
"type": [
"string",
"null"
]
},
"name": {
"description": "Company name.",
"type": [
"string",
"null"
]
},
"report_date": {
"description": "Earnings report date (YYYY-MM-DD).",
"type": "string"
},
"symbol": {
"description": "Ticker symbol.",
"type": "string"
},
"timing": {
"description": "pre-market | post-market | null",
"type": [
"string",
"null"
]
}
},
"type": "object"
},
"type": "array"
},
"total": {
"description": "Total matching results before limit applied.",
"type": "integer"
},
"window_end": {
"description": "Last date included (YYYY-MM-DD).",
"type": "string"
}
},
"required": [
"earnings",
"total",
"window_end",
"as_of"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://the-stall.intuitek.ai/cap/earnings-calendar" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://the-stall.intuitek.ai/cap/earnings-calendar");
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://the-stall.intuitek.ai/cap/earnings-calendar")
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/5079.json, and this resource appears in /discovery/resources and /discovery/search.