Aggregate wallet stats (tx count, volume, unique recipients) from the x402 payment ecosystem for $0.01 per call.
What it does
This endpoint returns aggregate statistics for a specific wallet address within the x402 payment ecosystem. Given a wallet address (in this case 0x913d74d8e868e12a5f7f795304715da5da83e0da), it provides metrics such as transaction count, total transfer volume, and unique recipients. The data covers x402 protocol micropayments on both Base and Solana chains.
The endpoint is part of x402scan, a payment data explorer and analytics dashboard built by Merit Systems. It indexes on-chain x402 transfers and exposes them through a suite of paid API endpoints. This particular stats endpoint accepts optional query parameters for chain filtering (base or solana) and timeframe lookback (1, 7, 14, or 30 days). Each call costs $0.01 USD, paid via the x402 micropayment protocol.
Note: The probe returned 404 on both GET and POST for this specific wallet address, which may indicate the wallet has no indexed data or the address path is not recognized. The broader x402scan API platform appears live (root returns 200) and the OpenAPI spec documents this endpoint pattern at /api/x402/wallets/{address}/stats. The URL in the listing uses a legacy path prefix (/api/data/wallets/) rather than the documented /api/x402/wallets/ path, which likely explains the 404.
Capabilities
Use cases
- —Retrieve aggregate payment statistics for a specific wallet participating in x402 micropayments
- —Monitor a wallet's x402 spending activity over configurable time windows (1, 7, 14, or 30 days)
- —Filter wallet stats by chain (Base or Solana) to analyze cross-chain payment behavior
- —Build dashboards tracking x402 ecosystem wallet activity
Fit
Best for
- —Developers building analytics on top of the x402 micropayment protocol
- —Agents that need to assess a wallet's x402 payment history before transacting
- —Monitoring tools tracking USDC micropayment flows on Base and Solana
Not for
- —General-purpose blockchain explorers needing full transaction details (use the transactions endpoint instead)
- —Querying wallets outside the x402 payment ecosystem
- —Free or unauthenticated access — every call requires a $0.01 x402 micropayment
Quick start
curl -H "X-Payment: <x402_payment_header>" \
"https://www.x402scan.com/api/x402/wallets/0x913d74d8e868e12a5f7f795304715da5da83e0da/stats?chain=base&timeframe=7"Endpoint
Quality
The OpenAPI spec is thorough and documents the endpoint pattern clearly, but the specific URL in this listing uses a /api/data/ path prefix that returned 404, suggesting a stale or incorrect URL. No response schema or example responses are provided. The endpoint pattern at /api/x402/wallets/{address}/stats is documented and likely live, but this exact URL is not confirmed working.
Warnings
- —The listed URL uses path /api/data/wallets/ but the OpenAPI spec documents /api/x402/wallets/; the correct base path is likely /api/x402/
- —Probe returned 404 on both GET and POST — the specific URL may be stale or the wallet may have no indexed data
- —No response schema or example response is documented in the OpenAPI spec
- —This listing is for a single hardcoded wallet address; the general endpoint pattern /api/x402/wallets/{address}/stats is more useful
Citations
- —The endpoint costs $0.01 per call via x402 micropaymenthttps://www.x402scan.com
- —x402scan is a payment data explorer and registry for the x402 protocol, built by Merit Systemshttps://www.x402scan.com
- —The wallet stats endpoint accepts chain (base/solana) and timeframe (1/7/14/30 days) query parametershttps://www.x402scan.com
- —The documented path is /api/x402/wallets/{address}/stats, not /api/data/wallets/{address}/statshttps://www.x402scan.com