← Marketplace
Base
Productclank
Productclank is an x402-native service at https://www.productclank.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. 2 endpoints listed.
Offers
| Offer | Endpoint | Price |
|---|---|---|
X402 Boost Boost any social post with real human engagement from ProductClank's creator community. $20 per boost: 10 authentic AI-drafted replies posted by real community members (or 30 likes / 10 reposts). Works on X/Twitter, LinkedIn, Instagram, TikTok, Reddit, Farcaster, and YouTube. Send the post URL; get back a campaign id and a public tracking URL. Engagement typically lands within 24-48 hours. | /m/bz-www-productclank-com/api/x402/boost | 20 USDC |
X402 Content Campaign Launch a community content campaign for your product on ProductClank. $50 per launch: real creators produce and post original content (threads, posts, videos) about your product, and you track submissions on a public campaign page. Requires a ProductClank product id — create one free at www.productclank.com. Send the product id plus a campaign message; the brief is AI-composed and the campaign aut | /m/bz-www-productclank-com/api/x402/content-campaign | 50 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-www-productclank-com/api/x402/boost')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-www-productclank-com/api/x402/boost # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …