← Marketplace
Base
Minifetch
Minifetch is an x402-native service at https://minifetch.com, 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. 6 endpoints listed.
Offers
| Offer | Endpoint | Price |
|---|---|---|
Extract Url Content For site owners auditing AI readability: returns the clean markdown an LLM extracts from your page after nav, ads, and scripts are stripped. See what survives for AEO, GEO and AI search; respects robots.txt | /m/bz-minifetch-com/api/v1/x402/extract/url-content | 0.002 USDC |
Extract Url Links For SEO link audits: Extracts and categorizes all links on a page (internal, external, anchor) for SEO audits and site-structure analysis. Returns nofollow/rel attributes, anchor text, image links missing alt text, and external domain distribution | /m/bz-minifetch-com/api/v1/x402/extract/url-links | 0.002 USDC |
Extract Url Metadata For technical SEO and metadata indexing: Extracts rich structured metadata from your URL (favicons, title, description, canonical, meta tags, Open Graph and Twitter Card tags, JSON-LD, redirect chain, relevant response headers, performance metrics, headings, images). Returns everything by default; narrow response with the fields query param (pass atomic field names, ex: ?fields=title,description o | /m/bz-minifetch-com/api/v1/x402/extract/url-metadata | 0.002 USDC |
Extract Url Preview Extracts all fields used for a page's share previews: the lightweight cards that represent the page on social platforms, chat apps, and AI | /m/bz-minifetch-com/api/v1/x402/extract/url-preview | 0.002 USDC |
Preflight Url Check Cheap preflight checks if a URL can be fetched by Minifetch's user agent before making requests to the other paid Minifetch endpoints. If your own site is blocked read the tutorial: https://minifetch.com/tutorials/unblock-minifetch | /m/bz-minifetch-com/api/v1/x402/preflight/url-check | 0.001 USDC |
Run Seo Page Audit Runs a full technical SEO audit on a single web page. Verify redirects, headers, meta tags, indexability, JSON-LD, missing or conflicting canonicals and more. No black-box scoring; just deterministic, composable signal you can act on. Every threshold is documented at https://minifetch.com/skills/seo-page-audit/SKILL.md | /m/bz-minifetch-com/api/v1/x402/run/seo-page-audit | 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-minifetch-com/api/v1/x402/extract/url-content')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-minifetch-com/api/v1/x402/extract/url-content # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …