← Marketplace
Base
Workers
Workers is an x402-native service at https://polyform.polyform-org.workers.dev, 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 |
|---|---|---|
Domain :Domain Registration intelligence for any domain: creation/expiry dates, age in days, registrar, statuses, nameservers. Source: registry RDAP. JSON. | /m/bz-polyform-polyform-org-workers-dev/v1/domain/:domain | 0.005 USDC |
Econ Worldbank Latest value of any World Bank indicator for a country (GDP, inflation, population...). Source: World Bank API. JSON. | /m/bz-polyform-polyform-org-workers-dev/v1/econ/worldbank | 0.005 USDC |
Email Domain Check Can this domain receive mail, and is it configured seriously? MX, SPF and DMARC via DNS-over-HTTPS with a deliverability summary. JSON. | /m/bz-polyform-polyform-org-workers-dev/v1/email/domain-check | 0.003 USDC |
Fda Drug Label Official FDA label data for a drug by brand or generic name: indications, warnings, dosage. Source: openFDA. JSON. | /m/bz-polyform-polyform-org-workers-dev/v1/fda/drug-label | 0.005 USDC |
Fda Recalls Search US FDA enforcement recalls for drugs, food, or devices by free-text query. Source: openFDA. JSON. | /m/bz-polyform-polyform-org-workers-dev/v1/fda/recalls | 0.005 USDC |
Geo Geocode US street address to coordinates plus matched/normalized address. Source: US Census Bureau geocoder. JSON. | /m/bz-polyform-polyform-org-workers-dev/v1/geo/geocode | 0.002 USDC |
Geo Reverse Coordinates to US state, county, tract and block geography. Source: US Census Bureau. JSON. | /m/bz-polyform-polyform-org-workers-dev/v1/geo/reverse | 0.002 USDC |
Ip :Ip Who operates an IP: registry, network range, organization, country. Source: RIR RDAP. JSON. | /m/bz-polyform-polyform-org-workers-dev/v1/ip/:ip | 0.003 USDC |
Company :Id Latest key financial facts for a US public company by ticker or CIK: revenue, net income, assets, EPS from XBRL filings. Source: SEC EDGAR. JSON. | /m/bz-polyform-polyform-org-workers-dev/v1/sec/company/:id | 0.01 USDC |
Filings Search Full-text search across SEC filings; filter by form type. Returns filing metadata and links. Source: SEC EDGAR full-text search. JSON. | /m/bz-polyform-polyform-org-workers-dev/v1/sec/filings/search | 0.01 USDC |
Time Business Days Business days between two dates (exclusive of end), skipping weekends and US federal holidays; also returns the holiday list in range. Pure computation. JSON. | /m/bz-polyform-polyform-org-workers-dev/v1/time/business-days | 0.001 USDC |
Weather Forecast 7-day forecast for any US coordinate: periods with temperature, wind, precipitation chance, narrative. Source: National Weather Service. JSON. | /m/bz-polyform-polyform-org-workers-dev/v1/weather/forecast | 0.003 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-polyform-polyform-org-workers-dev/v1/domain/:domain')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-polyform-polyform-org-workers-dev/v1/domain/:domain # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …