← Marketplace

PONS Market

Pons v2 launchpad and Uniswap intelligence on Robinhood Chain, from the Monex Protocol team: live launch feed, full on-chain launch records, graduations, claimable creator fees, token market data, graduated-pool state with hook decoding, and on-chain swap quotes. Pays in USDG on Robinhood Chain or USDC on Base. Machine-payable per request.

Robinhood Chain

Offers

OfferEndpointPrice
Claimable creator fees
Creator fees sitting unclaimed in the Pons fee escrow, in the launch pairing asset. Pass ?token= to resolve the launch current recipient, or ?recipient= to read an address balance directly. Returns wei and ETH amounts plus how to claim.
/m/mesh-pons/fees0.03 USDG
Latest graduations
Tokens that recently graduated from the bonding curve into a real pool: token, position id, amounts seeded, and the graduation transaction, newest first. Pass ?limit=10 (max 25).
/m/mesh-pons/graduations0.07 USDG
Launch record
Full on-chain record for one Pons launch: phase (bonding, swept, graduated, rescued), deployer, creator fee recipient plus any pending timelocked recipient change, creator tax, buyback flag, graduation threshold, swept amounts, and the fees claimable right now. Pass ?token= with the ERC-20 address.
/m/mesh-pons/launch0.03 USDG
Latest launches
The newest tokens launched through Pons v2, newest first: token address, name, symbol, deployer, bonding curve, pairing asset, graduation threshold, and launch transaction. Pass ?limit=20 (max 50).
/m/mesh-pons/launches0.07 USDG
Token market data
Live market stats for a Pons token: USD price, market cap, 24h volume and change, liquidity, pair address, and whether it trades on the bonding curve or a graduated pool. Pass ?token= with the ERC-20 address.
/m/mesh-pons/market0.03 USDG
Graduated pool state
The Uniswap pool a Pons launch graduated into: version (v3 or v4), pool address or id, fee tier, tick spacing, any v4 hook with its decoded permission bitmap and cautions, live sqrtPrice, tick, and liquidity. Bonding-phase tokens return their curve instead. Pass ?token= with the ERC-20 address.
/m/mesh-pons/pool0.03 USDG
Swap quote
Fresh on-chain swap quote through the graduated Uniswap pool, from the verified quoter contracts: pass ?token=, ?amountIn= (decimal), and ?side=buy for ETH to token or ?side=sell for token to ETH. Hooked v4 pools are refused with the hook address.
/m/mesh-pons/quote0.03 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-pons/fees', {
  headers: { 'payment-signature': signedPaymentPayload },
})

Or inspect the challenge yourself:

curl -i https://api.meshgateway.co/m/mesh-pons/fees
# HTTP/1.1 402 Payment Required
# WWW-Authenticate: Payment id="…", method="evm", intent="charge", …