Overview
Base coin price mini-endpoint for major tokens only. Returns spot prices and 24h stats for well-known tickers like btc, solana, eth, xmr, ltc and other large-cap coins, never microcaps. Pass an optional ticker to get a single-coin 24h snapshot with price, symbol, changeRate, changePrice, high and low, or omit ticker to receive a compact basket of top tokens in a fixed order. Cost: 0.001 USDC per request.
Protocol
x402
Price
$0.0010
Payment Asset
USD Coin
Payment Network
Base
Category
uncategorized
Provider
x402factory
Source
bazaar
Indexed
2026-03-02 01:01:24
Health
Status
healthy
Latency (p50)
388ms
Uptime (30d)
100.0%
Reliability Score
95/100
Last Checked
2026-03-21 12:14:54
Last Healthy
2026-03-21 12:14:54
Consecutive Failures
0
Input Schema
{
"bodyFields": {
"ticker": {
"description": "Optional ticker symbol for a single major token (case-insensitive). Examples: btc, solana, eth, xmr, ltc. When omitted the endpoint returns a compact basket of top tokens instead.",
"required": false,
"type": "string"
}
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Output Schema
{
"changePrice": {
"description": "Absolute 24h price change over the recent period for the asset (single mode only).",
"type": "number"
},
"changeRate": {
"description": "Relative 24h change rate over the recent period for the asset (single mode only).",
"type": "number"
},
"high": {
"description": "24h high price for the asset (single mode only).",
"type": "number"
},
"low": {
"description": "24h low price for the asset (single mode only).",
"type": "number"
},
"mode": {
"description": "Result mode: 'single' when ticker is provided, 'top' when ticker is omitted.",
"type": "string"
},
"ok": {
"description": "True on success.",
"type": "boolean"
},
"price": {
"description": "Spot price for the asset, using the upstream best bid/last price in a stable quote asset.",
"type": "number"
},
"prices": {
"description": "For mode='top': ordered array of { ticker, symbol, price } for a fixed basket of major tokens, in the order: btc, solana, eth, xmr, bnb, xrp, trx, doge, ada, bch, hype, link, leo, xlm, zec, ltc, avax, hbar, dai, shib, ton, mnt, wlfi, cro.",
"type": "array"
},
"symbol": {
"description": "Upstream trading symbol for the asset (e.g. BTC-USDT for single mode, or base asset symbol like BTC in the top basket).",
"type": "string"
},
"ticker": {
"description": "Normalized lower-case ticker that was resolved (single mode only).",
"type": "string"
}
}