The day's biggest percentage gainers across US equities, with current and previous-day OHL
The day's biggest percentage gainers across US equities, with current and previous-day OHLCV per ticker. From x402stock, a pay-per-call market & economic data API for AI agents. No API key or account; pay in USDC via x402.
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": 10
},
"type": "http"
},
"output": {
"example": {
"as_of": "2026-05-29T20:00:00.000Z",
"count": 1,
"direction": "gainers",
"source": "x402stock",
"tickers": [
{
"change": 16.1942,
"change_percent": 220.03,
"day": {
"close": 23.55,
"high": 26.11,
"low": 23.06,
"open": 25.94,
"volume": 19121,
"vwap": 24.3
},
"previous_day": {
"close": 7.36,
"high": 7.44,
"low": 6.91,
"open": 6.97,
"volume": 58578,
"vwap": 7.17
},
"ticker": "CBRX",
"updated": "2026-05-29T19:58:00.000Z"
}
]
},
"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": {
"limit": {
"exclusiveMinimum": 0,
"maximum": 100,
"type": "integer"
}
},
"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"
},
"direction": {
"enum": [
"gainers",
"losers"
],
"type": "string"
},
"source": {
"const": "x402stock",
"type": "string"
},
"tickers": {
"items": {
"additionalProperties": false,
"properties": {
"change": {
"type": "number"
},
"change_percent": {
"type": "number"
},
"day": {
"additionalProperties": false,
"properties": {
"close": {
"type": "number"
},
"high": {
"type": "number"
},
"low": {
"type": "number"
},
"open": {
"type": "number"
},
"volume": {
"type": "number"
},
"vwap": {
"type": "number"
}
},
"required": [
"open",
"high",
"low",
"close",
"volume",
"vwap"
],
"type": "object"
},
"previous_day": {
"additionalProperties": false,
"properties": {
"close": {
"type": "number"
},
"high": {
"type": "number"
},
"low": {
"type": "number"
},
"open": {
"type": "number"
},
"volume": {
"type": "number"
},
"vwap": {
"type": "number"
}
},
"required": [
"open",
"high",
"low",
"close",
"volume",
"vwap"
],
"type": "object"
},
"ticker": {
"type": "string"
},
"updated": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"ticker",
"change",
"change_percent",
"updated"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"source",
"as_of",
"direction",
"count",
"tickers"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402stock.xyz/api/v1/gainers" # -> 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/gainers");
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/gainers")
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/5292.json, and this resource appears in /discovery/resources and /discovery/search.