← Marketplace
Base
Gate402
Gate402 is an x402-native service at https://gate402.app, 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. 12 endpoints listed.
Offers
| Offer | Endpoint | Price |
|---|---|---|
V1 Best Swap Best-execution intel for a Base token: which DEX pool to trade on and the estimated price impact + total cost for a given trade size, ranked across pools, with a split suggestion. Constant-product estimate for trading agents — the execution plan, not a firm quote. | /m/bz-gate402-app/v1/best-swap | 0.02 USDC |
V1 Dedup Semantic vector cache: exact-match Map shortcut, then 0.88 cosine similarity on hash embeddings. Sub-10ms hits. | /m/bz-gate402-app/v1/dedup | 0.003 USDC |
V1 Dex Live DEX price, liquidity, and 24h volume for a Base token across its trading pairs (DexScreener). | /m/bz-gate402-app/v1/dex | 0.01 USDC |
V1 Edgar Latest SEC EDGAR filings (10-K/10-Q/8-K/…) for a US ticker or CIK, with direct document links. | /m/bz-gate402-app/v1/edgar | 0.02 USDC |
V1 Launches Radar of the freshest Base token launches (newest DEX pools), lightly pre-screened by liquidity/age/flow with quickFlags for obvious junk. Top-of-funnel discovery for trading agents — feeds token-risk / momentum / best-swap. From GeckoTerminal. | /m/bz-gate402-app/v1/launches | 0.02 USDC |
V1 Minify Compress text: strip filler, collapse JSON, densify prose. Cuts upstream LLM token spend ~40%. | /m/bz-gate402-app/v1/minify | 0.005 USDC |
V1 Momentum Factual momentum + order-flow signal for a Base token: price trend (5m-24h), buy/sell pressure, and volume trend, classified as RISING/FALLING/FLAT + ACCUMULATION/DISTRIBUTION and gated by a live honeypot check. For trading agents — the read, not a prediction. | /m/bz-gate402-app/v1/momentum | 0.02 USDC |
V1 News Recent news headlines + heuristic bull/bear sentiment for a ticker or topic (Google News, no LLM). | /m/bz-gate402-app/v1/news | 0.02 USDC |
V1 Onchain On-chain wallet & token intelligence on Base: native + ERC-20 balances, EOA/contract detection, tx count, and token metadata. From public RPC. | /m/bz-gate402-app/v1/onchain | 0.01 USDC |
V1 Proxy Fetch any public URL, render client-side JS, strip nav/ads, return clean LLM-ready Markdown. | /m/bz-gate402-app/v1/proxy | 0.002 USDC |
Proxy Stealth Anti-bot fetch for Cloudflare / JS-heavy protected pages: routed through rotating residential proxies with automatic JS rendering and CAPTCHA solving, returned as clean LLM-ready Markdown. Best-effort on the hardest targets. | /m/bz-gate402-app/v1/proxy/stealth | 0.05 USDC |
V1 Token Risk Rug/tradeability risk VERDICT for a Base token: a 0-100 score and SAFE/CAUTION/AVOID call from liquidity depth, 24h volume, DEX diversity, pool age, ERC-20 validity, holder concentration, and a live honeypot/sell-tax simulation. Judgment for trading agents, not raw data. | /m/bz-gate402-app/v1/token-risk | 0.03 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-gate402-app/v1/best-swap')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-gate402-app/v1/best-swap # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …