← Marketplace
Base
Robinx
Robinx is an x402-native service at https://api.robinx.io, 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. 10 endpoints listed.
Offers
| Offer | Endpoint | Price |
|---|---|---|
Agent Features Token-level feature row for one Robinhood Chain token: launch facts, current activity/deployer/price/caller state, and the observed mention record — inputs for your own model (no score, no recommendation) | /m/bz-api-robinx-io/agent/features | 0.03 USDC |
Callers Proven X caller-lift leaderboard | /m/bz-api-robinx-io/callers | 0.01 USDC |
Deployer :Address Deployer reputation rap sheet | /m/bz-api-robinx-io/deployer/:address | 0.01 USDC |
Entity :Address Wallet-entity appearances across the accumulated holder-snapshot archive | /m/bz-api-robinx-io/entity/:address | 0.05 USDC |
Feed New Live scored launch feed (realtime) — or add ?tier=free for the 10-min-delayed free feed, or ?tier=alpha ($0.02) for caller_signal enrichment | /m/bz-api-robinx-io/feed/new | 0.01 USDC |
Leaderboard Top trusted deployers | /m/bz-api-robinx-io/leaderboard | 0.01 USDC |
Signals Calls Pollable stream: fresh RH-chain calls by measured early-callers (included fair-use on Agent/Signal Feed keys) | /m/bz-api-robinx-io/signals/calls | 0.02 USDC |
Social Follows Pollable tape of follow/unfollow transitions by Robinhood Chain principal accounts on X — each followed handle crossed with its measured caller record | /m/bz-api-robinx-io/social/follows | 0.02 USDC |
Social Momentum Tokens ranked by measured caller-accuracy weight (then independent voices, then mention count) — mutual-follow clusters collapsed to one voice | /m/bz-api-robinx-io/social/momentum | 0.02 USDC |
Token :Address Token on-chain stats | /m/bz-api-robinx-io/token/:address | 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-api-robinx-io/agent/features')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-api-robinx-io/agent/features # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …