← Marketplace
Robinhood Chain
Binance Spot Markets
Live spot market data from Binance via its public data mirror: prices, 24h tickers, candlesticks, and order-book depth for every listed pair. Machine-payable per request.
Offers
| Offer | Endpoint | Price |
|---|---|---|
Order book Order-book depth snapshot: bids and asks with quantities. Pass ?symbol=BTCUSDT&limit=50 (limit up to 5000). | /m/binance-markets/depth | 0.005 USDG |
Candlesticks OHLCV candles. Pass ?symbol=BTCUSDT&interval=1h&limit=100; intervals from 1m to 1M, optional &startTime=/&endTime= in ms. | /m/binance-markets/klines | 0.01 USDG |
Last price Latest trade price. Pass ?symbol=BTCUSDT, or ?symbols=["BTCUSDT","ETHUSDT"] for several; omitting both returns every pair. | /m/binance-markets/price | 0.005 USDG |
24h ticker 24h rolling stats: price change, high, low, volume, and trade count. Pass ?symbol=ETHUSDT; the no-parameter form returns every pair and is very large. | /m/binance-markets/ticker-24h | 0.005 USDG |
Machine-readable: openapi.json with x-payment-info offers.
Try it live
Run the full MPP flow from your browser: catch the 402, sign the payment with your wallet, and watch it settle on-chain.
Sign in with your wallet to try an endpoint straight from the browser.
Pay with an agent
Any MPP or x402-compatible client works. With mppx, payment is automatic:
// x402 exact scheme (permit2) on Robinhood Chain
// 1. GET the endpoint, read the payment-required header (base64 JSON)
// 2. Sign PermitWitnessTransferFrom against Permit2 for the advertised offer
// (spender = x402ExactPermit2Proxy, witness.to = merchant wallet)
// 3. Retry with the payment-signature header; settlement tx arrives
// in the payment-response header
const res = await fetch('https://api.meshgateway.co/m/binance-markets/depth', {
headers: { 'payment-signature': signedPaymentPayload },
})Or inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/binance-markets/depth # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …