x402 · HTTP 402 Payment Required
Insight API, monetized per request.
A pay-per-call market insight service. Buyer agents pay $0.01 USDC on Base mainnet per request via the x402 protocol. No keys, no accounts — just send payment headers.
Endpoint URL
Paste this into your buyer agent (e.g. an x402-enabled fetch client).
https://v0-x402-endpoint-creation.vercel.app/api/insightOptional query param: ?topic=defi
Network
eip155:8453
Base (mainnet)
Price
$0.01 USDC
per successful request
Facilitator
facilitator.payai.network
PayAI (EVM secp256k1)
Pay To
0xe253d3AF921d8ACf3d95364cc5D17Dd1a17D4450
Try it from a buyer agent
Using the x402 fetch client with a funded Base mainnet wallet.
import { wrapFetchWithPayment } from "x402-fetch"
import { privateKeyToAccount } from "viem/accounts"
const account = privateKeyToAccount(process.env.PRIVATE_KEY)
const fetchWithPay = wrapFetchWithPayment(fetch, account)
const res = await fetchWithPay("https://v0-x402-endpoint-creation.vercel.app/api/insight?topic=defi")
console.log(await res.json())First call returns HTTP 402 with payment instructions. Retry with the payment header to receive the response.