← Marketplace
Base
Agentfeeds
Agentfeeds is an x402-native service at https://api.agentfeeds.jp, 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. 5 endpoints listed.
Offers
| Offer | Endpoint | Price |
|---|---|---|
Gas Base Base network gas fee statistics (1-minute baseFeePerGas buckets): p25/p50/p90/p99 and the current value's percentile rank within the window. Descriptive statistics only; not investment advice. | /m/bz-api-agentfeeds-jp/v1/chain/gas/base | 0.002 USDC |
Wrapped Parity Wrapped-BTC parity monitor on Base: WBTC/cbBTC on-chain pool price vs 1:1 parity, in bps, plus consecutive-minute streak beyond a deviation threshold. Useful for collateral-acceptance decisions between BTC wrappers of the same underlying asset. Descriptive statistics only; not investment advice. | /m/bz-api-agentfeeds-jp/v1/dex/wrapped/parity | 0.003 USDC |
Fx Customs Rate Weekly official Japan Customs reference exchange rate (税関長公示レート) used to convert import declaration values to yen under Article 4-7 of the Customs Tariff Law -- a live proxy to the Customs weekly CSV, not a real-time market rate. Source: Japan Customs (customs.go.jp), whose terms of use explicitly permit commercial use. Factual published data only; not a live FX quote or trading advice. | /m/bz-api-agentfeeds-jp/v1/jp/fx/customs_rate | 0.002 USDC |
Events Headlines Cheapest tier: headlines only (original + machine-translated title) across all 11 Japan regulatory sources, no summary. Upsell entry point to /v1/reg/events. Factual; not legal advice. | /m/bz-api-agentfeeds-jp/v1/reg/events/headlines | 0.002 USDC |
Sanctions Heartbeat Freshness heartbeat only (list date, address count, fetched_at) for both Japan MOF and OFAC sanctions lists. No addresses. Cheapest polling entry point for change-detection loops. | /m/bz-api-agentfeeds-jp/v1/reg/sanctions/heartbeat | 0.001 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-agentfeeds-jp/v1/chain/gas/base')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-api-agentfeeds-jp/v1/chain/gas/base # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …