Upcoming US economic data releases — WHEN the market-moving prints land, not just their la
Upcoming US economic data releases — WHEN the market-moving prints land, not just their latest values. Returns curated high-importance releases (CPI, PPI, PCE, jobs, JOLTS, GDP, retail sales, housing starts, industrial production) within `?days=` (default 30, max 90), each with date and category, plus the next FOMC meeting. `?past=true` includes the last week. Release dates from FRED.
20000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-14
updated
Provider
x402stock.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3070Fbb3803819fB5BdfE9286fdc6325A877fA85",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"days": 30,
"past": "false"
},
"type": "http"
},
"output": {
"example": {
"as_of": "2026-06-05T12:00:00.000Z",
"attribution": "Economic release dates: Federal Reserve Bank of St. Louis (FRED). FOMC meeting dates: U.S. Federal Reserve.",
"count": 3,
"fomc": {
"days_until": 12,
"next_meeting": "2026-06-17"
},
"from": "2026-06-05",
"releases": [
{
"category": "inflation",
"date": "2026-06-10",
"name": "Consumer Price Index",
"release_id": 10
},
{
"category": "employment",
"date": "2026-07-02",
"name": "Employment Situation",
"release_id": 50
},
{
"category": "growth",
"date": "2026-06-25",
"name": "Gross Domestic Product",
"release_id": 53
}
],
"source": "fred",
"to": "2026-07-05",
"window_days": 30
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"days": {
"default": 30,
"exclusiveMinimum": 0,
"maximum": 90,
"type": "integer"
},
"past": {
"default": "false",
"enum": [
"true",
"false"
],
"type": "string"
}
},
"required": [
"days",
"past"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"as_of": {
"type": "string"
},
"attribution": {
"type": "string"
},
"count": {
"type": "number"
},
"fomc": {
"additionalProperties": false,
"properties": {
"days_until": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"next_meeting": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"next_meeting",
"days_until"
],
"type": "object"
},
"from": {
"type": "string"
},
"releases": {
"items": {
"additionalProperties": false,
"properties": {
"category": {
"type": "string"
},
"date": {
"type": "string"
},
"name": {
"type": "string"
},
"release_id": {
"type": "number"
}
},
"required": [
"release_id",
"name",
"category",
"date"
],
"type": "object"
},
"type": "array"
},
"source": {
"const": "fred",
"type": "string"
},
"to": {
"type": "string"
},
"window_days": {
"type": "number"
}
},
"required": [
"source",
"as_of",
"window_days",
"from",
"to",
"count",
"releases",
"fomc",
"attribution"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402stock.xyz/api/v1/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://x402stock.xyz/api/v1/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://x402stock.xyz/api/v1/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/5305.json, and this resource appears in /discovery/resources and /discovery/search.