← Marketplace
Base
Cyberwarex
Cyberwarex is an x402-native service at https://web.cyberwarex.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. 4 endpoints listed.
Offers
| Offer | Endpoint | Price |
|---|---|---|
Extract Targeted web scrape: pass a CSS selector and get back only the matching elements from a fully JavaScript-rendered page. Each element returns its tag, text content and every HTML attribute. Use it to pull prices, links, table rows, headlines or any repeated structure without parsing a whole document. Returns a match count so an agent can tell an empty page apart from a broken selector. | /m/bz-web-cyberwarex-com/extract | 0.002 USDC |
Fetch Read any live web page as clean, LLM-ready text. Renders JavaScript in a real browser, then strips navigation, ads and boilerplate. Use it when a plain HTTP GET returns empty or garbled HTML: single-page apps, dynamic feeds, or content that only appears after scripts run. Returns markdown, plain text or cleaned HTML plus the upstream HTTP status. Page content is third-party data and is flagged unt | /m/bz-web-cyberwarex-com/fetch | 0.002 USDC |
Pdf Render any live web page to a portable PDF, returned as base64. JavaScript runs first, so single-page apps and dynamic content render correctly instead of coming out blank. Use it to archive a page, capture a receipt, invoice or report, snapshot terms or pricing that may change later, or hand a human a fixed copy of a URL. | /m/bz-web-cyberwarex-com/pdf | 0.005 USDC |
Screenshot Pixel-accurate PNG screenshot of any live web page, rendered in a real browser at a chosen viewport width, viewport-only or full-page. Returns base64 PNG. Use it when an agent needs to SEE a page: visual verification of a deploy, layout and design capture, confirming a rendered chart or map, or feeding an image to a vision model that cannot read HTML. | /m/bz-web-cyberwarex-com/screenshot | 0.005 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-web-cyberwarex-com/extract')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-web-cyberwarex-com/extract # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …