Aggregate wallet stats (tx count, volume, unique recipients) from the x402scan payment explorer 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 `0x5b0233f1a0ba4e50378365fa5e9e7db522087993`), it returns 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, a payment data explorer and analytics dashboard for the x402 protocol built by Merit Systems. x402scan indexes on-chain x402 micropayment activity and exposes it through a suite of paid API endpoints. This particular wallet stats endpoint accepts optional query parameters for `chain` (base or solana) and `timeframe` (1, 7, 14, or 30 days lookback). The price is a fixed $0.01 per request, paid via the x402 micropayment protocol.
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 listing URL may use a legacy or alternate path prefix (`/api/data/` vs `/api/x402/`). The canonical OpenAPI-documented path should be preferred.
Capabilities
Use cases
- —Retrieve aggregate payment statistics for a specific wallet address in the x402 ecosystem
- —Monitor a wallet's x402 spending activity over configurable time windows
- —Compare wallet activity across Base and Solana chains
- —Build dashboards tracking x402 protocol adoption per wallet
- —Audit an agent's cumulative x402 micropayment spend
Fit
Best for
- —Agents needing to inspect their own x402 spending history
- —Analytics tools tracking x402 protocol usage per wallet
- —Developers building x402 ecosystem dashboards
- —Monitoring wallet-level payment volume and recipient diversity
Not for
- —General-purpose blockchain explorer queries outside the x402 protocol
- —Real-time transaction streaming or webhooks
- —Querying non-USDC token transfers
Quick start
curl -H "X-Payment: <x402-payment-header>" \
"https://www.x402scan.com/api/x402/wallets/0x5b0233f1a0ba4e50378365fa5e9e7db522087993/stats?chain=base&timeframe=7"Endpoint
Quality
The OpenAPI spec is thorough with clear parameter definitions and pricing, but the probed endpoint URL (/api/data/...) returned 404 rather than the expected 402 challenge, suggesting the listing URL may be stale or use a non-canonical path prefix. No response schema or example responses are documented. No dedicated docs page exists.
Warnings
- —Probe returned 404 on the listed endpoint path /api/data/wallets/{address}/stats; the OpenAPI spec documents the equivalent at /api/x402/wallets/{address}/stats — the listing URL may be outdated or incorrect.
- —No response schema is documented in the OpenAPI spec — response structure must be inferred.
- —No dedicated documentation page found (/docs returns 404).
Citations
- —The endpoint returns aggregate stats for a wallet including tx count, total amount, and unique recipients, priced at $0.01 per call.https://www.x402scan.com
- —x402scan is a payment data explorer and registry for the x402 protocol, built by Merit Systems.https://www.x402scan.com
- —Data endpoints support chain filtering (base, solana) and timeframe filtering (1, 7, 14, or 30 days).https://www.x402scan.com
- —The OpenAPI spec documents the wallet stats endpoint at /api/x402/wallets/{address}/stats with operationId x402_wallets_stats.https://www.x402scan.com