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 0xc3b8b2d31b5a62ff16188e908e81e67d3710e0e1), 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 platform built by Merit Systems. It indexes on-chain x402 transfers and exposes them through a suite of paid API endpoints. This particular wallet stats endpoint accepts optional query parameters for chain filtering (base or solana) and timeframe lookback (1, 7, 14, or 30 days). The cost is a fixed $0.01 USDC micropayment per request, settled via the x402 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 URL path uses a legacy format (/api/data/wallets/ vs the documented /api/x402/wallets/). The canonical OpenAPI spec documents the endpoint at /api/x402/wallets/{address}/stats. The broader x402scan platform and its OpenAPI spec are live and well-documented.
Capabilities
Use cases
- —Retrieve aggregate payment statistics for a specific wallet participating in x402 micropayments
- —Monitor a wallet's transaction count, volume, and unique recipient count over configurable timeframes
- —Compare wallet activity across Base and Solana chains
- —Build dashboards tracking x402 ecosystem participation by wallet
Fit
Best for
- —Agents needing quick wallet-level summaries of x402 payment activity
- —Analytics pipelines monitoring x402 protocol adoption per wallet
- —Developers building on the x402 protocol who want to inspect wallet behavior
Not for
- —General-purpose blockchain explorers needing full transaction details (use the transactions endpoint instead)
- —Non-x402 token transfers or arbitrary ERC-20 analytics
- —Wallets with no x402 protocol activity (no data will be indexed)
Quick start
curl -H "X-Payment: <x402_payment_header>" \
"https://www.x402scan.com/api/x402/wallets/0xc3b8b2d31b5a62ff16188e908e81e67d3710e0e1/stats?chain=base&timeframe=30"Endpoint
Quality
The OpenAPI spec is thorough and pricing is clear ($0.01/call), but the specific probed endpoint (/api/data/wallets/…/stats) returned 404 on both methods, suggesting either a path mismatch with the canonical /api/x402/wallets/ route or no indexed data for this wallet. No response schema or example responses are documented. No dedicated docs page exists.
Warnings
- —Probed URL path /api/data/wallets/{address}/stats returned 404; the OpenAPI spec documents the canonical path as /api/x402/wallets/{address}/stats — the listed endpoint may be a legacy or incorrect path.
- —No response schema or example responses are provided in the OpenAPI spec.
- —No dedicated documentation page found (x402scan.com/docs returns 404).
Citations
- —The endpoint costs $0.01 per call as a fixed x402 micropaymenthttps://www.x402scan.com
- —Wallet stats endpoint accepts chain (base/solana) and timeframe (1/7/14/30 days) query parametershttps://www.x402scan.com
- —x402scan is a payment data explorer and registry for the x402 protocol, built by Merit Systemshttps://www.x402scan.com
- —The canonical OpenAPI path is /api/x402/wallets/{address}/statshttps://www.x402scan.com