Aggregate wallet stats (tx count, volume, unique recipients) from the x402 protocol explorer.
What it does
This endpoint returns aggregate statistics for a specific wallet address within the x402 payment ecosystem. Given a wallet address, it reports metrics such as transaction count, total transfer amount, and unique recipients. The data covers x402 micropayment transfers on both Base and Solana chains, and can be filtered by chain and by a lookback timeframe (1, 7, 14, or 30 days).
The endpoint is part of x402scan, an analytics dashboard and block explorer for the x402 protocol built by Merit Systems. x402scan indexes on-chain USDC micropayment transfers made through x402-compatible facilitators (Coinbase, PayAI, Meridian, and others). The wallet stats endpoint costs $0.01 per call, paid via the x402 micropayment protocol. The specific address in this listing's URL (0x8d04a6ebb3ff23ce0c49cff095f713d1079bb256) is hardcoded, but the same pattern works for any wallet address at `/api/x402/wallets/{address}/stats`.
Note: The probe returned HTTP 404 for this specific endpoint URL, which uses a path prefix of `/api/data/` rather than the `/api/x402/` prefix documented in the OpenAPI spec. The canonical, documented path is `/api/x402/wallets/{address}/stats`. The `/api/data/` variant may be deprecated or an alternate routing. Agents should prefer the documented `/api/x402/` path.
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
- —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 the x402 payment ecosystem
- —Developers building tools on top of x402 protocol data
Not for
- —General-purpose blockchain explorers needing full transaction history (use the transactions endpoint instead)
- —Non-x402 token transfers or arbitrary ERC-20 analytics
- —Free/unauthenticated bulk data access
Quick start
curl -H "X-Payment: <x402_payment_header>" \
"https://www.x402scan.com/api/x402/wallets/0x8d04a6ebb3ff23ce0c49cff095f713d1079bb256/stats?chain=base&timeframe=7"Endpoint
Quality
The OpenAPI spec is well-documented with clear parameters and pricing, but the probed endpoint URL uses /api/data/ instead of the documented /api/x402/ prefix and returned 404. No response schema or example responses are provided. No dedicated docs page exists.
Warnings
- —Probed URL uses /api/data/wallets/…/stats which returned 404; the documented canonical path is /api/x402/wallets/{address}/stats — the listed endpoint may be stale or deprecated.
- —No response schema or example response is available in the OpenAPI spec.
- —No dedicated documentation page found (/docs returns 404).
Citations
- —The endpoint costs $0.01 per call via x402 micropaymenthttps://www.x402scan.com
- —x402scan is described as 'a payment data explorer and registry for the x402 protocol' built by Merit Systemshttps://www.x402scan.com
- —Wallet stats endpoint supports chain (base, solana) and timeframe (1, 7, 14, 30 days) query parametershttps://www.x402scan.com
- —The canonical OpenAPI path is /api/x402/wallets/{address}/statshttps://www.x402scan.com