← Marketplace

Workers

Workers is an x402-native service at https://x402-filings.datalayer.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. 11 endpoints listed.

Base

Offers

OfferEndpointPrice
Apps Lookup
App Store listing data for any app on any storefront: current and all-time star ratings with review counts, version, release notes, size, price, content rating, genres and release dates. Includes a version-sentiment read comparing the current version's rating against its all-time average, which is how you spot a release that damaged an app. Look up by numeric App Store id or search by name.
/m/bz-x402-filings-datalayer-workers-dev/v1/apps/lookup0.01 USDC
Compliance Sanctions Screen
Screen any person or company against the US Treasury OFAC sanctions lists — SDN and Consolidated, primary names plus every recorded alias, 39,000 names in total. Handles the 'LAST, First' convention OFAC uses, strips legal suffixes so Ltd and Limited match, and returns exact, strong and possible hits with the sanctions programmes attached. Tuned to over-report rather than miss. Returns the list bu
/m/bz-x402-filings-datalayer-workers-dev/v1/compliance/sanctions-screen0.02 USDC
Fda Adverse Events
Adverse event reports for a drug or medical device from the FDA's FAERS and MAUDE systems: total report count and the most frequently reported reactions, ranked. Returns the interpretation caveat with the data — these are voluntary reports, a report does not establish causation, and counts scale with how widely a product is used.
/m/bz-x402-filings-datalayer-workers-dev/v1/fda/adverse-events0.02 USDC
Fda Device Clearances
FDA 510(k) clearances for medical devices: which devices were cleared to market, the applicant, the decision date, product code, device class, regulation number and advisory committee, plus a clearance-per-year breakdown. Search by device name, applicant company or K-number. Pairs with the adverse-events and enforcement endpoints for full medtech diligence.
/m/bz-x402-filings-datalayer-workers-dev/v1/fda/device-clearances0.02 USDC
Fda Drug Shortages
Current and resolved US drug shortages from the FDA: what is short, which company reports it, the reason, dosage form, therapeutic category and whether the shortage is still ongoing. A supply-chain signal for pharmacy, procurement and formulary systems, published free by the FDA.
/m/bz-x402-filings-datalayer-workers-dev/v1/fda/drug-shortages0.02 USDC
Fda Enforcement
FDA recall and enforcement records across drug, device and food, normalised into one shape with classification, reason, distribution scope and firm. Queryable by firm, product, classification and date. One product type returning nothing never fails the call — the three openFDA endpoints are independent and a gap in one is not a gap in the others.
/m/bz-x402-filings-datalayer-workers-dev/v1/fda/enforcement0.01 USDC
Legal Court Cases
Search US federal and state court opinions from CourtListener. Query by party name, topic or citation and get the case name, court, jurisdiction, docket number, filing date, reporter citations and — the field that separates a landmark from a footnote — how many later opinions have cited it. Filter by court and filing date.
/m/bz-x402-filings-datalayer-workers-dev/v1/legal/court-cases0.02 USDC
Safety Product Recalls
US consumer product recalls from the CPSC — the regulator covering everything FDA and NHTSA do not: furniture, toys, appliances, batteries, power tools. Search by keyword and date, and get the hazard, the reported injuries, the manufacturers and the retailers that sold it.
/m/bz-x402-filings-datalayer-workers-dev/v1/safety/product-recalls0.01 USDC
Safety Vehicle Recalls
Open NHTSA safety recalls for a specific make, model and year. Returns the campaign number, affected component, the hazard, the remedy, and the two flags that change what you do today: whether NHTSA says park it immediately, and whether the fix can be applied over the air. Free US regulator data.
/m/bz-x402-filings-datalayer-workers-dev/v1/safety/vehicle-recalls0.01 USDC
Safety Vin Decode
Decode any 17-character VIN into the vehicle it describes: make, manufacturer, model, year, series, body class, drive type, engine, fuel, transmission and assembly plant. NHTSA returns 140 mostly-empty fields; this strips the blanks, promotes the ones that matter and reports whether the check digit validated.
/m/bz-x402-filings-datalayer-workers-dev/v1/safety/vin-decode0.01 USDC
Sec Full Text
Search the full text of every SEC filing since 2001. Answers the question a per-company filings feed cannot: which registrants used a given phrase, in which form, and when. Wrap a phrase in double quotes for an exact match, filter by form type and date, and get a breakdown by form and by company alongside the filings themselves.
/m/bz-x402-filings-datalayer-workers-dev/v1/sec/full-text0.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-filings-datalayer-workers-dev/v1/apps/lookup')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

curl -i https://api.meshgateway.co/m/bz-x402-filings-datalayer-workers-dev/v1/apps/lookup
# HTTP/1.1 402 Payment Required
# WWW-Authenticate: Payment id="…", method="evm", intent="charge", …