← Marketplace
Robinhood Chain
MonexGecko
DEX token intelligence from the Monex Protocol team, across every chain DexScreener indexes: ranked pair search, full token profiles with pool aggregates, live prices, and trending and boosted token feeds. Counterfeit-resistant ranking by real 24h volume. Machine-payable per request.
Offers
| Offer | Endpoint | Price |
|---|---|---|
Latest boosts The newest boosted tokens on DexScreener: chain, token address, boost amount, and project links, newest first. No parameters. | /m/mesh-gecko/boosted | 0.01 USDG |
Pair detail Live stats for one trading pair: price, changes, volume, liquidity, and trade counts. Pass ?chain=&pair= with the pool address, e.g. ?chain=base&pair=0x.... | /m/mesh-gecko/pair | 0.01 USDG |
Price quote Best-price quote for a token by symbol or name, picked from the highest-volume stable-quoted market. Pass ?q=, e.g. ?q=WETH or ?q=PEPE. | /m/mesh-gecko/price | 0.005 USDG |
Latest profiles The latest token profiles published on DexScreener: icons, descriptions, and social links, useful for spotting brand-new projects. No parameters. | /m/mesh-gecko/profiles | 0.01 USDG |
Pair search Ranked DEX pair search across all chains: prices, 1h/6h/24h changes, volume, liquidity, trade counts, and market caps, best markets first. Pass ?q=PEPE (symbol, name, or address), optionally &limit=10. | /m/mesh-gecko/search | 0.01 USDG |
Token profile Full profile for one token: best market plus every pool it trades in, with aggregate 24h volume and liquidity. Pass ?chain=&address=, e.g. ?chain=base&address=0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913. | /m/mesh-gecko/token | 0.02 USDG |
Trending tokens The most-boosted tokens on DexScreener right now, enriched with live price, volume, and liquidity. Pass ?limit=10 (max 30). | /m/mesh-gecko/trending | 0.02 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/mesh-gecko/boosted', {
headers: { 'payment-signature': signedPaymentPayload },
})Or inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/mesh-gecko/boosted # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …