← Marketplace
Base
Onrender
Onrender is an x402-native service at https://x402-trends-server.onrender.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. 4 endpoints listed.
Offers
| Offer | Endpoint | Price |
|---|---|---|
Api Crypto Market Get live cryptocurrency price and market data from Coinbase Exchange for BTC, ETH, SOL, and other supported trading pairs. Use this crypto market API for last price, best bid and ask, 24-hour open/high/low/volume, and 30-day volume. Defaults to BTC-USD. | /m/bz-x402-trends-server-onrender-com/api/crypto-market | 0.05 USDC |
Api Scrape Scrape a public webpage and extract clean readable text. Use this web scraping endpoint when an AI agent needs page content for summarization, research, retrieval, content extraction, indexing, or downstream analysis without parsing raw HTML. | /m/bz-x402-trends-server-onrender-com/api/scrape | 0.005 USDC |
Api Sports Game Brief Get normalized sports schedules, live or recent scores, matchup status, teams, venue and a concise game brief for NBA, NFL, MLB and English Premier League (EPL). Filter by league, date and optional team name or abbreviation. Use for NBA scores, NFL games, MLB scores, EPL fixtures, today's games, schedules and AI sports research. | /m/bz-x402-trends-server-onrender-com/api/sports-game-brief | 0.05 USDC |
Api Weather Get a current U.S. weather forecast from NOAA and the National Weather Service by latitude and longitude. Use this weather API when an agent needs forecast temperature, conditions, wind, day/night periods, or detailed local forecast text for U.S. coordinates. | /m/bz-x402-trends-server-onrender-com/api/weather | 0.02 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-x402-trends-server-onrender-com/api/crypto-market')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-x402-trends-server-onrender-com/api/crypto-market # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …