← Marketplace
Base
Azure
Azure is an x402-native service at https://agent-commerce-factory-jm.austriaeast.cloudapp.azure.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. 12 endpoints listed.
Offers
| Offer | Endpoint | Price |
|---|---|---|
Amazon Search Amazon product search API. Search live Amazon products by keyword and get normalized ASIN, title, current price/range, currency, rating, review count, bought-past-month purchase signal, product URL, image, rank, Amazon Choice/Best Seller flags and delivery text. For shopping agents, Amazon product research, price lookup and ecommerce product discovery. | /m/bz-agent-commerce-factory-jm-austriaeast-cloudapp-azure-com/v1/amazon/search | 0.006 USDC |
Crypto History Historical crypto price candles (OHLC). Given a coin id or ticker (e.g. bitcoin, eth, sol) and a window of days (1, 7, 14, 30, 90, 180 or 365) returns open/high/low/close candles with ISO timestamps. For charting, technical analysis, backtesting and trend-detection agents. | /m/bz-agent-commerce-factory-jm-austriaeast-cloudapp-azure-com/v1/crypto/history | 0.006 USDC |
Crypto News Crypto and financial news search. Returns current headlines about cryptocurrencies, tokens, markets and finance with source, domain, URL, snippet and publication time. For trading agents, crypto research, market monitoring and news feeds. Query by coin, ticker or topic (e.g. bitcoin, ethereum, solana). | /m/bz-agent-commerce-factory-jm-austriaeast-cloudapp-azure-com/v1/crypto/news | 0.004 USDC |
Crypto Prices Live cryptocurrency prices and market data — a token price API for agents. Look up the current Bitcoin price, Ethereum price or any token price by coin id or common ticker (e.g. bitcoin, eth, sol) and get USD price, market cap, market-cap rank, 24h change %, 24h volume, 24h high/low and last-updated timestamp. Empty request returns the top coins by market cap. For trading agents, portfolio valuati | /m/bz-agent-commerce-factory-jm-austriaeast-cloudapp-azure-com/v1/crypto/prices | 0.008 USDC |
Onchain Balance On-chain native coin balance for any wallet. Given a chain (ethereum, base, arbitrum, optimism, polygon, bsc) and a wallet address returns the native balance (ETH/MATIC/BNB) in both exact wei and human-readable decimal, with symbol and decimals. Read live from the chain via RPC. For wallet trackers, portfolio, treasury-monitoring and payment-verification agents. | /m/bz-agent-commerce-factory-jm-austriaeast-cloudapp-azure-com/v1/onchain/balance | 0.002 USDC |
Onchain Block Fetch an EVM block (latest or by number). Given a chain and an optional block number returns block number, hash, parent hash, timestamp, transaction count, gas used/limit, base fee and miner. Omit the number for the current block height. For indexers, chain-tip monitoring, finality-tracking and block-explorer agents. | /m/bz-agent-commerce-factory-jm-austriaeast-cloudapp-azure-com/v1/onchain/block | 0.001 USDC |
Onchain Ens ENS resolution both ways. Given an ENS name (e.g. vitalik.eth) returns the Ethereum address; given an address returns the primary ENS name. Resolved live on Ethereum mainnet. For wallet UX, address-book, identity and naming agents. | /m/bz-agent-commerce-factory-jm-austriaeast-cloudapp-azure-com/v1/onchain/ens | 0.002 USDC |
Onchain Token Balance On-chain ERC-20 token balance for a wallet. Given a chain, a wallet address and a token contract address returns the token balance (exact raw units + decimal), with token name, symbol and decimals, read live from the chain. For wallet trackers, DeFi portfolio valuation, airdrop checks and treasury-monitoring agents. | /m/bz-agent-commerce-factory-jm-austriaeast-cloudapp-azure-com/v1/onchain/token-balance | 0.002 USDC |
Onchain Token Meta ERC-20 token metadata and total supply by contract. Given a chain and a token contract address returns name, symbol, decimals and total supply (raw + decimal), read live on-chain. For token explorers, due-diligence, supply-tracking and DeFi agents. | /m/bz-agent-commerce-factory-jm-austriaeast-cloudapp-azure-com/v1/onchain/token-meta | 0.002 USDC |
Onchain Tx Look up an on-chain transaction by hash. Given a chain and a transaction hash returns sender, recipient, value (wei + ETH), nonce, block number, status (success/reverted), gas used, effective gas price, log count and any created contract. For explorers, payment-verification, settlement-checking and monitoring agents. | /m/bz-agent-commerce-factory-jm-austriaeast-cloudapp-azure-com/v1/onchain/tx | 0.003 USDC |
Sentiment Search Sentiment analysis for any topic, brand, coin or ticker. Aggregates web/news/blog citations and returns polarity counts (positive/negative/neutral), emotional connotations (anger, happiness, love, sadness, fun, share) and a derived sentiment score in [-1,1]. For crypto/market sentiment, brand monitoring and opinion-mining agents. | /m/bz-agent-commerce-factory-jm-austriaeast-cloudapp-azure-com/v1/sentiment/search | 0.05 USDC |
Web Search Web search over Google's organic results (SERP API). Returns ranked organic results with title, URL, domain, snippet and breadcrumb for any query. For research, retrieval-augmented agents, web lookup, fact-finding and general search. | /m/bz-agent-commerce-factory-jm-austriaeast-cloudapp-azure-com/v1/web/search | 0.004 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-agent-commerce-factory-jm-austriaeast-cloudapp-azure-com/v1/amazon/search')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-agent-commerce-factory-jm-austriaeast-cloudapp-azure-com/v1/amazon/search # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …