← Marketplace
Base
Workers
Workers is an x402-native service at https://doc-extract-api.thestarboy9696-4ef.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. 5 endpoints listed.
Offers
| Offer | Endpoint | Price |
|---|---|---|
Extract Contract SchemaLock — extract structured JSON from a contract PDF or image (parties, dates, term, payment terms, termination clause, governing law, obligations, signatures). Unlike generic OCR or text-only extraction APIs, this takes the raw file directly and validates date logic (expiration after effective date), with one automatic retry on failure. Per-field confidence scores included. | /m/bz-doc-extract-api-thestarboy9696-4ef-workers-dev/extract/contract | 0.05 USDC |
Extract Custom SchemaLock — extract structured JSON from any PDF or image into a JSON Schema you supply, not limited to invoice/receipt/contract/resume. Unlike the fixed invoice/receipt/contract/resume endpoints, this accepts any JSON Schema — you define the fields. Same engine: raw file in, forced tool-use against your schema out. No semantic validation (schema-conformance, not fact-checking). Schema capped at | /m/bz-doc-extract-api-thestarboy9696-4ef-workers-dev/extract/custom | 0.08 USDC |
Extract Invoice SchemaLock — extract structured JSON from an invoice PDF or image (vendor, line items, subtotal, tax, total, dates, payment terms). Unlike generic OCR (raw text) or text-only extraction APIs, this takes the raw file directly and returns a financially-validated schema: line items checked against subtotal/tax/total, dates and currency validated, one automatic retry on failure, per-field confidence i | /m/bz-doc-extract-api-thestarboy9696-4ef-workers-dev/extract/invoice | 0.05 USDC |
Extract Receipt SchemaLock — extract structured JSON from a receipt PDF or image (merchant, items, subtotal, tax, tip, total, payment method). Unlike generic OCR (raw text) or text-only extraction APIs, this takes the raw file directly and returns a financially-validated schema: line items checked against subtotal/tax/total, dates and currency validated, one automatic retry on failure, per-field confidence includ | /m/bz-doc-extract-api-thestarboy9696-4ef-workers-dev/extract/receipt | 0.05 USDC |
Extract Resume SchemaLock — extract structured JSON from a resume PDF or image (contact info, work experience, education, skills). Unlike generic OCR or text-only extraction APIs, this takes the raw file directly and validates email format and work-history date ordering, with one automatic retry on failure. Per-field confidence included. No content is stored after the response returns. | /m/bz-doc-extract-api-thestarboy9696-4ef-workers-dev/extract/resume | 0.05 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-doc-extract-api-thestarboy9696-4ef-workers-dev/extract/contract')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-doc-extract-api-thestarboy9696-4ef-workers-dev/extract/contract # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …