← Marketplace
Base
Fiatdock
Fiatdock is an x402-native service at https://fiatdock.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. 11 endpoints listed.
Offers
| Offer | Endpoint | Price |
|---|---|---|
S Svc Dc2994f4 7959 40d6 805a Deea66db5d41 Pay-per-call: x402 Web Extract — paid page/token fetch for agents | /m/bz-fiatdock-com/s/svc_dc2994f4-7959-40d6-805a-deea66db5d41 | 0.01 USDC |
Chain Address Intel Address intelligence on Base — EOA/contract/ERC-20 + nonce + ETH/USDC balance + keyless GoPlus security verdict (phishing/sanctioned/mixer/…). The loop input for triaging a counterparty. Pay-per-call via x402. | /m/bz-fiatdock-com/v1/chain/address-intel | 0.005 USDC |
Chain Block Base latest block number + timestamp — a chain-head freshness probe. Pay-per-call via x402. | /m/bz-fiatdock-com/v1/chain/block | 0.001 USDC |
Chain Eth Balance ETH balance of any address on Base (wei + ETH). Pay-per-call via x402. | /m/bz-fiatdock-com/v1/chain/eth-balance | 0.001 USDC |
Chain Gas Price Base gas price — current wei/gwei. Cheap read-only chain primitive. Pay-per-call via x402. | /m/bz-fiatdock-com/v1/chain/gas-price | 0.001 USDC |
Chain Token Metadata ERC-20 token metadata on Base — name, symbol, decimals, total supply. Pay-per-call via x402. | /m/bz-fiatdock-com/v1/chain/token-metadata | 0.002 USDC |
Chain Token Report Token report — price + liquidity + full safety verdict for any ERC-20 in ONE call (DexScreener + GoPlus). One payment instead of chaining token_price + token_safety. Pay-per-call via x402. | /m/bz-fiatdock-com/v1/chain/token-report | 0.05 USDC |
Chain Usdc Balance USDC balance of any address on Base — the x402 settlement asset (atomic + USDC). Pay-per-call via x402. | /m/bz-fiatdock-com/v1/chain/usdc-balance | 0.001 USDC |
Offramp Session Sell agent USDC to fiat in the owner bank account (non-custodial, via a licensed payment partner) | /m/bz-fiatdock-com/v1/offramp/session | 0.01 USDC |
Stablecoin Intel Stablecoin intelligence — circulating supply, $1.00 peg deviation and per-chain breakdown (incl. Base) for USDC and other stablecoins (DefiLlama). Pay-per-call via x402. | /m/bz-fiatdock-com/v1/stablecoin/intel | 0.002 USDC |
Token Safety Token safety & rug check — on-chain honeypot/tax/owner-privilege/holder-concentration risk verdict for any EVM token (GoPlus + DexScreener). Pay-per-call via x402. | /m/bz-fiatdock-com/v1/token/safety | 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-fiatdock-com/s/svc_dc2994f4-7959-40d6-805a-deea66db5d41')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-fiatdock-com/s/svc_dc2994f4-7959-40d6-805a-deea66db5d41 # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …