← Marketplace
Base
Relaystation
Relaystation is an x402-native service at https://api.relaystation.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 |
|---|---|---|
V1 Contracts $0.02/contract. Agents strike binding-by-goodwill agreements: create terms, add parties, sign, check signatures — with paid arbitration when disputes arise. The trust layer for agent-to-agent work, one of 155 Relaystation tools on one balance — relaystation.ai | /m/bz-api-relaystation-ai/v1/contracts | 0.02 USDC |
Llm Extract Provider cost + 6%, itemized. Pull requested fields out of any text as clean JSON — schema-shaped output. ≈Opus-4.8 accuracy at ~1–5% of its cost (relaystation.ai/llm-validation). One of 11 vetted sub-cent LLM tasks on Relaystation — 155 tools, one balance. | /m/bz-api-relaystation-ai/v1/llm/extract | 0.01 USDC |
Llm Sentiment Provider cost + 6%, itemized. Score text positive / negative / neutral — reviews, tickets, social. ≈Opus-4.8 accuracy at ~1–5% of its cost. 1¢ x402 min; remainder auto-credits — relaystation.ai/penny | /m/bz-api-relaystation-ai/v1/llm/sentiment | 0.01 USDC |
Location Place Search $0.01/search. Free-text place and point-of-interest search — names, addresses, coordinates back as JSON. 155 tools, one balance — relaystation.ai | /m/bz-api-relaystation-ai/v1/location/place-search | 0.01 USDC |
Location Route $0.01/route. Calculate a route between two points — distance, duration, and geometry back as JSON. 155 tools, one balance — relaystation.ai | /m/bz-api-relaystation-ai/v1/location/route | 0.01 USDC |
Office Rescue $0.008/call. Rescue exotic or legacy Office files into PDF via LibreOffice — opens what modern Office won't. 1¢ x402 min; remainder auto-credits — relaystation.ai/penny | /m/bz-api-relaystation-ai/v1/office/rescue | 0.01 USDC |
Screening Match $0.01/screen. Screen any name against OFAC, EU, and UK sanctions (UN included) plus Wikidata-derived PEP watchlists — fuzzy matching, instant JSON verdict. Compliance in one call, one of 155 Relaystation tools on one balance — relaystation.ai | /m/bz-api-relaystation-ai/v1/screening/match | 0.01 USDC |
Vision Detect Labels $0.005/image. Detect objects, scenes, and concepts in an image (Rekognition) — labels with confidence scores. 1¢ x402 min; remainder auto-credits — relaystation.ai/penny | /m/bz-api-relaystation-ai/v1/vision/detect-labels | 0.01 USDC |
Vision Detect Ppe $0.005/image. Detect protective equipment — face, hand, head covers — on people in an image. Site-safety audits by API. 1¢ x402 min; remainder auto-credits — relaystation.ai/penny | /m/bz-api-relaystation-ai/v1/vision/detect-ppe | 0.01 USDC |
Web Pdf $0.02/render. Render any public web page to PDF — headless Chromium, SSRF-guarded egress. 155 tools, one balance — relaystation.ai | /m/bz-api-relaystation-ai/v1/web/pdf | 0.02 USDC |
Web Readability $0.005/extract. Extract the clean article text — title, byline, body — from any public URL. No boilerplate, no nav junk. 1¢ x402 min; remainder auto-credits — relaystation.ai/penny | /m/bz-api-relaystation-ai/v1/web/readability | 0.01 USDC |
Web Screenshot $0.01/screenshot. Screenshot any public web page to PNG/JPEG/WebP — headless Chromium, SSRF-guarded. 155 tools, one balance — relaystation.ai | /m/bz-api-relaystation-ai/v1/web/screenshot | 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-api-relaystation-ai/v1/contracts')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-api-relaystation-ai/v1/contracts # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …