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 0x980d6893eb139435b26ade6f271455f603a31682), it provides metrics such as transaction count, total transfer volume, and unique recipients. The data covers x402 protocol USDC transfers 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 micropayment activity across facilitators like Coinbase, PayAI, and Meridian. Query parameters allow filtering by chain (base or solana) and timeframe (1, 7, 14, or 30 days lookback). The cost is a fixed $0.01 x402 micropayment per request.
Note: The probe returned 404 for this specific URL path, which uses `/api/data/wallets/` rather than the documented `/api/x402/wallets/` path from the OpenAPI spec. The canonical endpoint path appears to be `/api/x402/wallets/{address}/stats`. The endpoint at the documented path is likely live based on the broader OpenAPI specification and the site's healthy root response, but the exact URL listed here may be a legacy or incorrect route.
Capabilities
Use cases
- —Retrieve aggregate payment statistics for a specific wallet address participating in x402 micropayments
- —Monitor a wallet's x402 spending activity over configurable time windows (1, 7, 14, or 30 days)
- —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 micropayment activity
- —Analytics pipelines monitoring x402 protocol adoption per wallet
- —Developers building x402 ecosystem dashboards
Not for
- —General-purpose blockchain explorers needing full transaction history (use the transactions endpoint instead)
- —Non-x402 token transfer analytics
- —Wallets not participating in the x402 payment protocol
Quick start
curl -H "X-Payment: <x402_payment_token>" \
"https://www.x402scan.com/api/x402/wallets/0x980d6893eb139435b26ade6f271455f603a31682/stats?chain=base&timeframe=7"Endpoint
Quality
The OpenAPI spec is detailed with clear parameter definitions and pricing, but the specific endpoint URL listed (/api/data/wallets/.../stats) returned 404 on probe — it likely should be /api/x402/wallets/.../stats per the spec. No response schema or example responses are documented. No crawled docs page exists.
Warnings
- —The listed endpoint path /api/data/wallets/{address}/stats returned 404; the OpenAPI spec documents the canonical path as /api/x402/wallets/{address}/stats — the listed URL may be incorrect or deprecated.
- —No response schema is documented in the OpenAPI spec; response structure must be inferred.
- —No dedicated documentation page exists (x402scan.com/docs returns 404).
Citations
- —Endpoint costs $0.01 per call as a fixed x402 micropaymenthttps://www.x402scan.com
- —Supports chain filter (base, solana) and timeframe filter (1, 7, 14, or 30 days)https://www.x402scan.com
- —x402scan is described as a payment data explorer and registry for the x402 protocol, built by Merit Systemshttps://www.x402scan.com
- —The OpenAPI spec documents the wallet stats endpoint at /api/x402/wallets/{address}/statshttps://www.x402scan.com