Market-wide split calendar across all US tickers (no ticker needed)
Market-wide split calendar across all US tickers (no ticker needed). Each row has the ticker, execution date, direction (`forward`/`reverse`), split_from/split_to, numeric `ratio`, and a human `ratio_text` like `10:1` or `1:8`. Future-dated announced splits sort first. Filter `?type=forward|reverse|all`, `?from=`/`?to=` date window, `?order=`, `?limit=`. From x402stock
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": {
"limit": 50,
"order": "desc",
"type": "all"
},
"type": "http"
},
"output": {
"example": {
"as_of": "2026-06-05T18:00:00.000Z",
"count": 2,
"source": "x402stock",
"splits": [
{
"execution_date": "2024-06-10",
"ratio": 10,
"ratio_text": "10:1",
"split_from": 1,
"split_to": 10,
"ticker": "NVDA",
"type": "forward"
},
{
"execution_date": "2021-08-02",
"ratio": 0.125,
"ratio_text": "1:8",
"split_from": 8,
"split_to": 1,
"ticker": "GE",
"type": "reverse"
}
]
},
"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": {
"from": {
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
"limit": {
"default": 50,
"exclusiveMinimum": 0,
"maximum": 1000,
"type": "integer"
},
"order": {
"default": "desc",
"enum": [
"asc",
"desc"
],
"type": "string"
},
"to": {
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
"type": {
"default": "all",
"enum": [
"forward",
"reverse",
"all"
],
"type": "string"
}
},
"required": [
"type",
"order",
"limit"
],
"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"
},
"count": {
"type": "number"
},
"source": {
"const": "x402stock",
"type": "string"
},
"splits": {
"items": {
"additionalProperties": false,
"properties": {
"execution_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"ratio": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"ratio_text": {
"type": "string"
},
"split_from": {
"type": "number"
},
"split_to": {
"type": "number"
},
"ticker": {
"type": "string"
},
"type": {
"enum": [
"forward",
"reverse",
"even"
],
"type": "string"
}
},
"required": [
"ticker",
"execution_date",
"type",
"split_from",
"split_to",
"ratio",
"ratio_text"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"source",
"as_of",
"count",
"splits"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402stock.xyz/api/v1/splits-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/splits-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/splits-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/5277.json, and this resource appears in /discovery/resources and /discovery/search.