← Marketplace
Base
Agentreader
Agentreader is an x402-native service at https://agentreader.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 |
|---|---|---|
Clean Convert raw HTML you already have into clean markdown. Send JSON {"html": "..."} and get back markdown with scripts, styles and boilerplate stripped. Cheaper than /read when the agent has already fetched the page. | /m/bz-agentreader-dev/clean | 0.005 USDC |
Dns DNS lookup over Cloudflare DoH: query A, AAAA, CNAME, MX, NS, TXT, SOA, SRV, CAA or PTR records for any domain and get structured JSON answers with TTLs. Useful for domain research, email validation and infrastructure checks. | /m/bz-agentreader-dev/dns | 0.003 USDC |
Extract AI structured-data extraction: turn any web page, text or HTML into JSON matching YOUR schema. Send JSON with one of url/text/html plus 'schema' (a JSON Schema object) and optional 'instructions'. Returns validated JSON. Powered by Claude with guaranteed schema conformance. | /m/bz-agentreader-dev/extract | 0.03 USDC |
Feed Parse any RSS, Atom or RDF feed into normalized JSON: feed title, description and up to 100 items with title, link, publish date, author, summary and categories. Ideal for agents monitoring news sources, blogs and changelogs. | /m/bz-agentreader-dev/feed | 0.006 USDC |
Links Extract every hyperlink on a web page as structured JSON: resolved absolute URL, anchor text, internal-vs-external classification and nofollow flag, up to 2000 unique links. The building block for agent crawlers that need to decide where to go next, plus broken-link sweeps, backlink and SEO analysis, and site mapping. | /m/bz-agentreader-dev/links | 0.005 USDC |
Meta Get structured metadata for any public web page in one call: title, meta description, canonical URL, Open Graph and Twitter card tags, favicons, JSON-LD schema types, language and the heading outline. Use it to build link previews and social cards, classify or dedupe URLs, and run SEO and AI-readability audits - far cheaper than fetching and parsing the whole page. | /m/bz-agentreader-dev/meta | 0.005 USDC |
Pdf Extract the full text of any PDF from a URL - no upload, no OCR setup, just pass the link. Returns plain text plus page count and word count as JSON. Built for agents reading research papers, filings, annual reports, datasheets and documentation. Handles files up to 25 MB. | /m/bz-agentreader-dev/pdf | 0.02 USDC |
Read Scrape any public web page and get back the main article as clean, LLM-ready markdown. Fetches the URL, strips nav, ads, cookie banners and footers with Readability, and returns JSON: title, byline, site name, publish date, excerpt, language, word count and the markdown body. The cheap way to feed real page content to an agent without burning tokens on raw HTML. Static-HTML extraction (no JS rende | /m/bz-agentreader-dev/read | 0.01 USDC |
Screen OFAC sanctions screening: fuzzy-match a person/entity/vessel name (transliteration-aware - Arabic and Slavic romanization variants) or look up a crypto address against the official OFAC SDN and Consolidated lists. Returns verdict (match/possible_match/clear), scored matches with programs and aliases, and full list-version provenance. Lists re-ingested every 6 hours. | /m/bz-agentreader-dev/screen | 0.05 USDC |
Sitemap Parse an XML sitemap or sitemap index into JSON: up to 5000 URLs with lastmod and priority, or the list of child sitemaps. Useful for agents planning site crawls or auditing site structure. | /m/bz-agentreader-dev/sitemap | 0.006 USDC |
Summarize AI summarization of any web page, raw text or HTML. Send JSON with one of url/text/html plus optional style (bullets|paragraph|tldr) and maxWords. Returns a dense, factual summary that preserves key numbers, names and conclusions. Powered by Claude. | /m/bz-agentreader-dev/summarize | 0.02 USDC |
Trust Verified-delivery trust data for any x402 service: full history of real PAID test purchases against the endpoint (not free 402 probes) - delivery rate, response validity, latency, price stability. Free aggregate at /leaderboard; this endpoint returns the complete per-check history for one resource. Untracked resources return 404 and you are NOT charged. Use it before wiring an unknown x402 service | /m/bz-agentreader-dev/trust | 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-agentreader-dev/clean')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-agentreader-dev/clean # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …