← Marketplace
Base
X402atlas
X402atlas is an x402-native service at https://hyperliquid.use.x402atlas.com, indexed from the x402 Bazaar (Coinbase's public discovery directory). It charges callers itself in USDC on Base and is paid directly at its own wallet; Monex Protocol passes your request and payment headers through untouched. 9 endpoints listed.
Offers
| Offer | Endpoint | Price |
|---|---|---|
Book Live L2 order book for one Hyperliquid asset — bids and asks with price, size and order count, up to 20 levels per side. | /m/bz-hyperliquid-use-x402atlas-com/book | 0.01 USDC |
Candles OHLCV candles for one Hyperliquid asset over any interval (1m to 1M), normalized into named fields with RFC3339 timestamps. | /m/bz-hyperliquid-use-x402atlas-com/candles | 0.01 USDC |
Funding Historical funding rates for one Hyperliquid perpetual over a time window — funding rate, premium and timestamp per hour. | /m/bz-hyperliquid-use-x402atlas-com/funding | 0.01 USDC |
Mids Current mid price for every Hyperliquid asset (perps + spot) in one call — a fast whole-venue price snapshot. | /m/bz-hyperliquid-use-x402atlas-com/mids | 0.005 USDC |
Oi Caps The Hyperliquid perpetual assets currently at their open-interest cap — a liquidity/risk signal. | /m/bz-hyperliquid-use-x402atlas-com/oi-caps | 0.005 USDC |
Perps Live context for every Hyperliquid perpetual — mark/oracle/mid price, funding, open interest, premium and 24h notional volume, zipped with each asset's metadata. | /m/bz-hyperliquid-use-x402atlas-com/perps | 0.01 USDC |
Perps Meta The Hyperliquid perpetuals universe — tradeable symbols with max leverage and size decimals, without live context. | /m/bz-hyperliquid-use-x402atlas-com/perps-meta | 0.005 USDC |
Predicted Funding Predicted next funding rates per asset across venues (Hyperliquid vs CEX perps) — cross-venue carry, de-positioned from Hyperliquid's nested arrays. | /m/bz-hyperliquid-use-x402atlas-com/predicted-funding | 0.01 USDC |
Spot Live context for every Hyperliquid spot pair — price, 24h notional volume and token supply, with token names resolved and context zipped in. | /m/bz-hyperliquid-use-x402atlas-com/spot | 0.01 USDC |
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.
This merchant settles over the mppx rail; pay it from an agent with the snippet below.
Pay with an agent
Any MPP or x402-compatible client works. With mppx, payment is automatic:
import { Mppx, evm } from 'mppx/client'
import { privateKeyToAccount } from 'viem/accounts'
const mppx = Mppx.create({
methods: [evm({
account: privateKeyToAccount(process.env.KEY),
currencies: [evm.assets.base.USDC],
})],
})
const res = await mppx.fetch('https://api.meshgateway.co/m/bz-hyperliquid-use-x402atlas-com/book')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-hyperliquid-use-x402atlas-com/book # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …