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 volume, and unique recipients. The data covers x402 micropayment transfers on both Base and Solana chains, and can be filtered by chain and by a timeframe lookback of 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 x402 micropayment activity and exposes it through a suite of paid data endpoints. This particular wallet stats endpoint costs $0.01 per call, payable via the x402 protocol (USDC micropayment). The address in the URL path (0x6b173bf632a7ee9151e94e10585bdeccd47bdaaf) is a specific wallet; the same pattern applies to any wallet address substituted into the path.
Note: The probe returned HTTP 404 for this specific endpoint URL, which uses the path pattern `/api/data/wallets/{address}/stats`. However, the OpenAPI spec documents the equivalent endpoint at `/api/x402/wallets/{address}/stats`. The 404 may indicate the URL path prefix has changed from `/api/data/` to `/api/x402/`. The canonical endpoint per the OpenAPI spec is `https://www.x402scan.com/api/x402/wallets/{address}/stats`.
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 on-chain x402 payment analytics per wallet
- —Developers building x402 ecosystem monitoring tools
- —Researchers analyzing micropayment adoption across Base and Solana
Not for
- —General-purpose blockchain explorers (covers only x402 protocol transfers)
- —Real-time streaming transaction feeds (returns aggregate snapshots only)
- —Non-USDC token analytics
Quick start
curl -X GET "https://www.x402scan.com/api/x402/wallets/0x6b173bf632a7ee9151e94e10585bdeccd47bdaaf/stats?chain=base&timeframe=7" \
-H "X-Payment: <x402_payment_token>"Endpoint
Quality
The OpenAPI spec is well-documented with clear parameters, pricing, and endpoint descriptions. However, the probed URL returned 404 (path mismatch between /api/data/ and /api/x402/), no response body examples are available, and no dedicated documentation pages exist. The endpoint is likely live at the canonical /api/x402/ path but could not be confirmed via probe.
Warnings
- —Probe returned 404: the listed URL uses /api/data/wallets/ but the OpenAPI spec documents /api/x402/wallets/. The correct base path is likely /api/x402/.
- —No example response schema or sample response is provided in the OpenAPI spec.
- —No dedicated documentation pages found (/docs, /api, /pricing all return 404).
Citations
- —Endpoint costs $0.01 per call via x402 micropaymenthttps://www.x402scan.com
- —Supports chain filter (base, solana) and timeframe filter (1, 7, 14, 30 days)https://www.x402scan.com
- —x402scan is described as 'the x402 analytics dashboard and block explorer'https://www.x402scan.com
- —OpenAPI spec documents the wallet stats endpoint at /api/x402/wallets/{address}/statshttps://www.x402scan.com
- —Built by Merit Systemshttps://www.x402scan.com