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 0xded128b7d78b7b24bae36edd9bcdc906b729a3a7), it returns metrics such as transaction count, total transfer volume, and unique recipients. The data covers x402 protocol micropayments on both Base and Solana chains.
The endpoint is part of x402scan, a payment data explorer and analytics dashboard built by Merit Systems. It indexes on-chain x402 transfers and exposes them through a suite of paid API endpoints. This particular stats endpoint accepts optional query parameters for chain filtering (base or solana) and timeframe lookback (1, 7, 14, or 30 days). The cost is a fixed $0.01 USDC micropayment per request, settled via the x402 protocol.
Note: The probe returned 404 on both GET and POST for this specific URL path, which uses the older `/api/data/wallets/` prefix. The OpenAPI spec documents the equivalent endpoint at `/api/x402/wallets/{address}/stats`. The endpoint may have been migrated to the newer path. Callers should use the `/api/x402/wallets/{address}/stats` path documented in the OpenAPI specification.
Capabilities
Use cases
- —Retrieve aggregate payment statistics for a specific wallet address in the x402 ecosystem
- —Monitor a wallet's transaction count, volume, and unique recipient count over configurable timeframes
- —Compare wallet activity across Base and Solana chains
- —Build dashboards tracking x402 protocol adoption per wallet
- —Audit agent spending patterns across x402-enabled APIs
Fit
Best for
- —Agents needing quick wallet-level summaries of x402 payment activity
- —Analytics tools monitoring x402 ecosystem participation
- —Developers building on the x402 protocol who need wallet metrics
Not for
- —Querying non-x402 on-chain transactions (only indexes x402 protocol transfers)
- —Free or unauthenticated access (requires $0.01 x402 micropayment per call)
- —Real-time streaming data (returns point-in-time aggregates)
Quick start
curl -H "X-Payment: <x402_payment_header>" \
"https://www.x402scan.com/api/x402/wallets/0xded128b7d78b7b24bae36edd9bcdc906b729a3a7/stats?chain=base&timeframe=7"Endpoint
Quality
The OpenAPI spec is thorough and documents the equivalent endpoint at /api/x402/wallets/{address}/stats with clear parameters and pricing. However, the probed URL (/api/data/wallets/...) returned 404, suggesting a path migration. No response schema or example responses are provided. No dedicated docs page exists.
Warnings
- —Probed endpoint path /api/data/wallets/{address}/stats returned 404; the canonical path appears to be /api/x402/wallets/{address}/stats per the OpenAPI spec
- —No response schema documented — response structure must be inferred
- —No example responses available in the OpenAPI spec or crawled pages
Citations
- —The endpoint costs $0.01 per call and accepts chain and timeframe query parametershttps://www.x402scan.com
- —x402scan is a payment data explorer and registry for the x402 protocol, built by Merit Systemshttps://www.x402scan.com
- —The OpenAPI spec documents the wallet stats endpoint at /api/x402/wallets/{address}/statshttps://www.x402scan.com
- —Data endpoints support Base and Solana chains with timeframe lookback of 1, 7, 14, or 30 dayshttps://www.x402scan.com