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. It is part of x402scan, a payment data explorer and registry for the x402 protocol built by Merit Systems. The wallet stats endpoint provides metrics such as transaction count, total amount sent, and unique recipients for any wallet that has participated as a sender in x402 transfers.
The endpoint accepts optional query parameters to filter by chain (Base or Solana) and timeframe (1, 7, 14, or 30 days lookback). It is a GET request priced at $0.01 per call, paid via an x402 micropayment using the X-Payment header. The specific URL in this listing queries the wallet address 0xedac2600acb532ee723c188003e4ed9cfd2ce978.
Note: During probing, this specific wallet-address URL returned 404 on both GET and POST, which may indicate the wallet has no indexed data or the address is not recognized. The broader x402scan API and its OpenAPI spec are well-documented, and the origin site (x402scan.com) is live and serving a full analytics dashboard. The wallet stats endpoint pattern (/api/x402/wallets/{address}/stats) is defined in the OpenAPI spec and is expected to work for wallets with indexed activity.
Capabilities
Use cases
- —Retrieve aggregate payment statistics for a specific x402 sender wallet
- —Monitor wallet activity over configurable time windows (1/7/14/30 days)
- —Compare wallet behavior across Base and Solana chains
- —Build dashboards tracking x402 protocol participation by wallet
Fit
Best for
- —Agents needing on-chain x402 payment analytics per wallet
- —Monitoring tools tracking USDC micropayment activity
- —Developers building on the x402 protocol who need sender-side metrics
Not for
- —General-purpose blockchain explorers (this is x402-specific, not all on-chain activity)
- —Querying wallets that have never participated in x402 transfers
- —Free/unauthenticated access (requires x402 micropayment per call)
Quick start
curl -X GET \
'https://www.x402scan.com/api/x402/wallets/0xedac2600acb532ee723c188003e4ed9cfd2ce978/stats?chain=base&timeframe=30' \
-H 'X-Payment: <x402_payment_token>'Endpoint
Quality
The OpenAPI spec is thorough and clearly documents the wallet stats endpoint pattern with parameters and pricing. However, the specific hardcoded wallet address in this listing returned 404 during probing (not a 402 challenge), no response examples are provided in the spec, and no dedicated documentation pages exist. The endpoint pattern is valid but this particular URL may not have indexed data.
Warnings
- —Probe returned 404 for this specific wallet address on both GET and POST — the wallet may have no indexed x402 activity, or the URL path may use /api/x402/ rather than /api/data/ (the listing URL uses /api/data/wallets/ but the OpenAPI spec defines /api/x402/wallets/)
- —No response schema or example responses are documented in the OpenAPI spec
- —The listing URL path (/api/data/wallets/...) does not match the OpenAPI spec path (/api/x402/wallets/...) — the correct base path appears to be /api/x402/
Citations
- —Wallet stats endpoint is priced at $0.01 per call via x402 micropaymenthttps://www.x402scan.com
- —Endpoint accepts chain (base/solana) and timeframe (1/7/14/30 days) query parametershttps://www.x402scan.com
- —x402scan is described as a payment data explorer and registry for the x402 protocolhttps://www.x402scan.com
- —Built by Merit Systemshttps://www.x402scan.com
- —Wallet stats returns tx count, total amount, unique recipientshttps://www.x402scan.com