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 analytics dashboard built by Merit Systems that indexes x402 protocol transfers on Base and Solana chains.
The wallet stats endpoint accepts a wallet address as a path parameter and returns summary metrics such as transaction count, total transfer amount, and unique recipients. Optional query parameters allow filtering by chain (base or solana) and timeframe (1, 7, 14, or 30 days lookback). The endpoint costs $0.01 per call, paid via the x402 micropayment protocol using USDC.
Note: The specific URL in this listing hardcodes a particular wallet address (0xc6422abc56223416b2e3fc17842a27ec246811b6). The general-purpose endpoint pattern is /api/x402/wallets/{address}/stats. The probe returned 404 for this specific address, which may indicate the address has no indexed data or the URL path uses a slightly different routing scheme (/api/data/wallets/ vs /api/x402/wallets/). The canonical OpenAPI spec documents the endpoint under /api/x402/wallets/{address}/stats.
Capabilities
Use cases
- —Retrieve aggregate payment statistics for a wallet participating in x402 transfers
- —Monitor wallet activity over configurable timeframes (1, 7, 14, or 30 days)
- —Filter wallet stats by chain (Base or Solana) to analyze cross-chain behavior
- —Build dashboards tracking x402 protocol adoption per wallet
- —Audit a wallet's x402 spending history programmatically
Fit
Best for
- —Agents needing quick summary stats on x402 wallet activity
- —Analytics dashboards tracking x402 protocol usage
- —Developers building on top of the x402 payment ecosystem
Not for
- —General-purpose blockchain explorers (only covers x402 protocol transfers)
- —Wallets or addresses with no x402 transaction history
- —Real-time streaming transaction monitoring
Quick start
curl -H "X-Payment: <x402_payment_token>" \
"https://www.x402scan.com/api/x402/wallets/0xc6422abc56223416b2e3fc17842a27ec246811b6/stats?chain=base&timeframe=30"Endpoint
Quality
The OpenAPI spec is well-documented with clear parameter definitions and pricing, but the specific probed endpoint returned 404 (possibly due to a URL path mismatch between /api/data/ and /api/x402/). No response schema or example responses are provided in the spec. No dedicated docs page exists.
Warnings
- —Probe returned 404 on both GET and POST — the listed URL uses /api/data/wallets/ but the OpenAPI spec documents /api/x402/wallets/. The canonical path may differ.
- —No response schema is documented in the OpenAPI spec; response structure must be inferred.
- —The hardcoded wallet address in the listing URL may have no indexed x402 data, which could also explain the 404.
Citations
- —The endpoint costs $0.01 per call via x402 micropaymenthttps://www.x402scan.com
- —x402scan indexes x402 protocol transfers on Base and Solana chainshttps://www.x402scan.com
- —Wallet stats endpoint supports chain and timeframe query parametershttps://www.x402scan.com
- —x402scan is built by Merit Systemshttps://www.x402scan.com