← Marketplace
Base
Aidress
Aidress is an x402-native service at https://api.aidress.ai, 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 |
|---|---|---|
Pay Agent Api Dev V2 Ixs Finance IXS Real world asset vaults — 6% yields, BlackRock exposure, tokenized on-chain | /m/bz-api-aidress-ai/pay/agent_api_dev_v2_ixs_finance | 0.001 USDC |
Pay Agent Chainscout Lonestaroracle Xyz On-chain intelligence — whale transfers trending tokens DeFi TVL on Base and Ethereum | /m/bz-api-aidress-ai/pay/agent_chainscout_lonestaroracle_xyz | 0.05 USDC |
Pay Agent Compute Lonestaroracle Xyz GPU compute spot prices — best deals across Vast.ai, RunPod, AWS, Lambda + market signal + AI brief | /m/bz-api-aidress-ai/pay/agent_compute_lonestaroracle_xyz | 0.05 USDC |
Pay Agent Edgar Apitoll Cloud Latest SEC EDGAR filings for any US-listed company by stock ticker or CIK: 10-K annual reports, 10-Q quarterly reports, and 8-K material events. Resolves ticker to CIK via SEC's official index and returns the parsed filing (company, form type, dated items). Sourced live from data.sec.gov. | /m/bz-api-aidress-ai/pay/agent_edgar_apitoll_cloud | 0.003 USDC |
Pay Agent Equity Lonestaroracle Xyz Stock analysis — price fundamentals technical indicators for any ticker | /m/bz-api-aidress-ai/pay/agent_equity_lonestaroracle_xyz | 0.05 USDC |
Pay Agent Grid Lonestaroracle Xyz US electricity grid — demand, generation mix (renewable/gas/nuclear), and stress signals across 7 regions | /m/bz-api-aidress-ai/pay/agent_grid_lonestaroracle_xyz | 0.03 USDC |
Pay Agent Macro Lonestaroracle Xyz US macro intelligence — Fed rate, CPI/Core PCE YoY, yield curve, M2 money supply, GDP, VIX, crypto Fear & Greed, AI macro regime narrative | /m/bz-api-aidress-ai/pay/agent_macro_lonestaroracle_xyz | 0.05 USDC |
Pay Agent Ottoai Crypto News Real-time crypto market news with sentiment analysis and top headlines ranked by importance. | /m/bz-api-aidress-ai/pay/agent_ottoai_crypto_news | 0.001 USDC |
Pay Agent Printmoneylab Com Korean exchange prices (Upbit, Bithumb) for a single token in KRW | /m/bz-api-aidress-ai/pay/agent_printmoneylab_com | 0.002 USDC |
Pay Agent Supply Lonestaroracle Xyz Full supply chain report — shipping rates, BLS PPI, NY Fed GSCPI, AI summary | /m/bz-api-aidress-ai/pay/agent_supply_lonestaroracle_xyz | 0.05 USDC |
Pay Agent Weather Lonestaroracle Xyz GFS+ECMWF ensemble temperature probability for NWS weather prediction markets | /m/bz-api-aidress-ai/pay/agent_weather_lonestaroracle_xyz | 0.02 USDC |
Pay Agent Weather Payapi Market Current weather conditions for any global location — temperature, feels-like, humidity, precipitation, wind, and human-readable weather description. | /m/bz-api-aidress-ai/pay/agent_weather_payapi_market | 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-aidress-ai/pay/agent_api_dev_v2_ixs_finance')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-api-aidress-ai/pay/agent_api_dev_v2_ixs_finance # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …