← Marketplace
Base
Cloudpulsepoint
Cloudpulsepoint is an x402-native service at https://x402.cloudpulsepoint.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. 7 endpoints listed.
Offers
| Offer | Endpoint | Price |
|---|---|---|
Check Blacklist Resolve the site's IP and check it against 15 major DNSBL spam/abuse blacklists. Use before sending mail from, or trusting, a host. WARN = listed on 1–2 lists; DOWN = listed on 3 or more. | /m/bz-x402-cloudpulsepoint-com/agent/check/blacklist | 0.03 USDC |
Check Dns Resolve a DNS record (A by default) for the host and return the values. Use to confirm a domain resolves and to detect missing or misconfigured records. | /m/bz-x402-cloudpulsepoint-com/agent/check/dns | 0.01 USDC |
Check Domain Look up the domain's registration expiry via WHOIS and report the expiry date and days remaining. Use to catch domains about to lapse before they drop and take DNS/email/site down with them. | /m/bz-x402-cloudpulsepoint-com/agent/check/domain | 0.03 USDC |
Check Http Fetch a URL and report whether it is reachable, the HTTP status code, and the response time in milliseconds. A fast liveness/uptime probe — run it before relying on a site or as a cheap health signal. | /m/bz-x402-cloudpulsepoint-com/agent/check/http | 0.01 USDC |
Check Perf Load the full page and measure time-to-first-byte, total load time, and downloaded size (capped at 5 MB). Use to gauge front-end performance before crawling, embedding, or depending on a page. | /m/bz-x402-cloudpulsepoint-com/agent/check/perf | 0.03 USDC |
Check Site Run HTTP + SSL + DNS + domain-expiry in one call and return a combined health snapshot. The single pre-flight check to run before crawling, deploying to, or depending on a site — cheaper and one round-trip instead of four. | /m/bz-x402-cloudpulsepoint-com/agent/check/site | 0.05 USDC |
Check Ssl Inspect the site's TLS/SSL certificate: whether it is currently valid and how many days remain until it expires. Use to catch soon-to-expire or already-expired certificates before they break HTTPS for visitors. | /m/bz-x402-cloudpulsepoint-com/agent/check/ssl | 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-x402-cloudpulsepoint-com/agent/check/blacklist')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-x402-cloudpulsepoint-com/agent/check/blacklist # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …