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 protocol ecosystem. Given a wallet address (in this case `0x687312cf41441eaca9e692306322aa2901980d90`), it reports metrics such as transaction count, total transfer volume, and number of unique recipients. The data covers x402 micropayment transfers on both Base and Solana chains.
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 accepts optional query parameters to filter by chain (`base` or `solana`) and timeframe (1, 7, 14, or 30 days lookback).
Pricing is $0.01 USD per request, paid via the x402 micropayment protocol. The endpoint is documented in the provider's OpenAPI spec under the operation `x402_wallets_stats`. Note: the probe returned 404 for this specific wallet address, which may indicate the address has no indexed activity or the URL path uses a legacy format (`/api/data/wallets/` vs the documented `/api/x402/wallets/`). The canonical documented path is `/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 participant behavior
- —Audit an agent's cumulative x402 micropayment spend
Fit
Best for
- —Agents needing to inspect their own or others' x402 payment history
- —Analytics tools tracking x402 protocol adoption and usage
- —Developers building on the x402 micropayment ecosystem
Not for
- —General-purpose blockchain explorers (covers only x402 USDC transfers, not all on-chain activity)
- —Wallets or addresses with no x402 transaction history (will return empty or 404)
- —Real-time streaming transaction monitoring
Quick start
curl -H "X-Payment: <x402_payment_token>" \
"https://www.x402scan.com/api/x402/wallets/0x687312cf41441eaca9e692306322aa2901980d90/stats?chain=base&timeframe=30"Endpoint
Quality
The OpenAPI spec is thorough with clear parameter definitions and pricing, but the probed endpoint path (/api/data/wallets/…) returned 404 on both GET and POST, suggesting either the address has no data or the URL uses a non-canonical path prefix. No response schema or example responses are documented. No dedicated docs page exists.
Warnings
- —Probe returned 404 on both GET and POST — the URL path '/api/data/wallets/' may be a legacy or incorrect route; the documented canonical path is '/api/x402/wallets/{address}/stats'.
- —No response schema is provided in the OpenAPI spec; response structure must be inferred.
- —No dedicated documentation pages were found (docs, pricing, README all return 404).
Citations
- —The endpoint is priced at $0.01 USD per request 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' built by Merit Systemshttps://www.x402scan.com
- —OpenAPI operation x402_wallets_stats documents the canonical path /api/x402/wallets/{address}/statshttps://www.x402scan.com