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 0x447e981bd3d8267499860ff0f9afbc9f8ffcc514), it provides metrics such as transaction count, total transfer volume, and unique recipients. The data covers x402 protocol USDC transfers on Base and Solana chains.
The endpoint is part of x402scan, an analytics dashboard and block explorer for the x402 protocol built by Merit Systems. It indexes on-chain x402 micropayment activity across facilitators like Coinbase, PayAI, and Meridian. The wallet stats endpoint accepts optional query parameters for chain filtering (base or solana) and timeframe lookback (1, 7, 14, or 30 days).
Pricing is $0.01 per request, paid via the x402 micropayment protocol. Note that the specific URL listed here is hardcoded to a single wallet address. The general-purpose version of this endpoint is at /api/x402/wallets/{address}/stats, which accepts any wallet address as a path parameter. The probe returned 404 rather than the expected 402 challenge, which may indicate the endpoint URL uses a different path prefix (/api/data/ vs /api/x402/) or the specific wallet address is not indexed.
Capabilities
Use cases
- —Retrieve aggregate payment statistics for a specific x402 wallet address
- —Monitor wallet activity across Base and Solana chains over configurable timeframes
- —Analyze x402 protocol adoption by examining wallet-level transaction counts and volumes
- —Build dashboards tracking USDC micropayment flows in the x402 ecosystem
Fit
Best for
- —Agents needing on-chain x402 payment analytics per wallet
- —Developers building x402 protocol monitoring tools
- —Researchers analyzing micropayment ecosystem activity
Not for
- —General-purpose blockchain explorers (covers only x402 USDC transfers, not all on-chain activity)
- —Real-time transaction streaming or webhooks
- —Wallets or addresses not participating in the x402 protocol
Quick start
curl -H "X-Payment: <x402_payment_token>" \
"https://www.x402scan.com/api/x402/wallets/0x447e981bd3d8267499860ff0f9afbc9f8ffcc514/stats?chain=base&timeframe=7"Endpoint
Quality
The OpenAPI spec documents the general /api/x402/wallets/{address}/stats endpoint well with parameters and pricing, but the specific listed URL (/api/data/wallets/...) returned 404 on probe rather than 402, suggesting a path mismatch or that this exact URL is not live. No response schema or example responses are available. Docs pages returned 404.
Warnings
- —Probe returned 404 on both GET and POST — the listed URL path (/api/data/wallets/) differs from the OpenAPI-documented path (/api/x402/wallets/). The endpoint may not be live at this exact URL.
- —No response schema documented in the OpenAPI spec; response structure must be inferred.
- —The URL is hardcoded to a single wallet address rather than being a parameterized endpoint.
Citations
- —Wallet stats endpoint costs $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 the x402 analytics dashboard and block explorerhttps://www.x402scan.com
- —x402scan is built by Merit Systemshttps://www.x402scan.com
- —OpenAPI spec documents /api/x402/wallets/{address}/stats with operationId x402_wallets_statshttps://www.x402scan.com