Use this when you want to know what is actually trading in tokenized stocks on Base right
Use this when you want to know what is actually trading in tokenized stocks on Base right now: the last 24 hours on ST0x's own DEX (Raindex) per token — USDC volume, trade count, last on-chain price and time — plus each token's issued vault supply and ERC-4626 wrapper rate, sorted by volume, with platform totals. Read straight from the public subgraphs and RPC; refreshed every 5 minutes.
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-17
updated
Provider
x402-accelerometer-feed.fly.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xbC3A8eAc0601F717E803935cABEDeE8EDB7713C4",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "5dBE1vqMVJCbxpBv9kw9nQJguUhYXk5mRGVfsxEF9cc4",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"as_of": "2026-09-17T11:30:00.000Z",
"chain": "base",
"disclaimer": "Public blockchain and reference data about tokenized securities. Not investment advice, not an offer, no order routing or execution. Eligibility to hold ST0x tokens is set by the issuer's prospectus.",
"kind": "st0x_pulse",
"sources": {
"issuance_subgraph": "https://api.goldsky.com/api/public/project_cmjr2df7svg6t01tl2ic706ao/subgraphs/sft-base/1.0.14/gn",
"raindex_subgraph": "https://subgraph.api.ormilabs.com/api/public/9f4fc2fa-4a15-44f7-a7c1-66fdaa518a71/subgraphs/raindex-base/prod/gn",
"registry": "https://github.com/ST0x-Technology/st0x.registry"
},
"tokens": [
{
"isin": "KYG3302D2024",
"last_price_usdc": 8.79,
"last_trade_at": "2026-09-16T19:39:25.000Z",
"symbol": "wtFGI",
"ticker": "FGI",
"trades": 349,
"vault_supply_shares": 42033.05,
"volume_usdc": 135909.4,
"wrapper_rate": 1
},
{
"isin": "US19260Q1076",
"last_price_usdc": 168.11,
"last_trade_at": "2026-09-17T08:56:01.000Z",
"symbol": "wtCOIN",
"ticker": "COIN",
"trades": 82,
"vault_supply_shares": 1800.22,
"volume_usdc": 41807.1,
"wrapper_rate": 1
}
],
"totals": {
"tokens_listed": 54,
"tokens_traded": 19,
"trades": 730,
"volume_usdc": 251640.12
},
"window_hours": 24
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"as_of": {
"type": "string"
},
"chain": {
"type": "string"
},
"disclaimer": {
"type": "string"
},
"kind": {
"type": "string"
},
"sources": {
"type": "object"
},
"tokens": {
"items": {
"properties": {
"isin": {
"type": [
"string",
"null"
]
},
"last_price_usdc": {
"type": "number"
},
"last_trade_at": {
"type": "string"
},
"symbol": {
"type": "string"
},
"ticker": {
"type": "string"
},
"trades": {
"type": "number"
},
"vault_supply_shares": {
"type": [
"number",
"null"
]
},
"volume_usdc": {
"type": "number"
},
"wrapper_rate": {
"type": [
"number",
"null"
]
}
},
"type": "object"
},
"type": "array"
},
"totals": {
"properties": {
"tokens_listed": {
"type": "number"
},
"tokens_traded": {
"type": "number"
},
"trades": {
"type": "number"
},
"volume_usdc": {
"type": "number"
}
},
"type": "object"
},
"window_hours": {
"type": "number"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402-accelerometer-feed.fly.dev/tokenized-equities/st0x/pulse" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402-accelerometer-feed.fly.dev/tokenized-equities/st0x/pulse");
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://x402-accelerometer-feed.fly.dev/tokenized-equities/st0x/pulse")
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/12323.json, and this resource appears in /discovery/resources and /discovery/search.