1. Inspect the offer
curl -i https://pay.edge-agents.ai/v1/services/edge-signal-snapshotDEVELOPER QUICKSTART
Inspect the HTTP 402 offer, then let an x402-compatible buyer sign and retry the request. Never place a wallet private key in source code.
curl -i https://pay.edge-agents.ai/v1/services/edge-signal-snapshotconst response = await fetch("${endpoint}");
if (response.status === 402) {
// Pass PAYMENT-REQUIRED to your x402 buyer.
}import requests
r = requests.get("${endpoint}")
assert r.status_code == 402
# Sign through your x402 wallet client.