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 `0x2e7e3f49bdadc6e777adc7788e58e9f26728db5b`), it returns metrics such as transaction count, total transfer volume, and unique recipients. The data covers x402 protocol micropayments 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 USDC transfers made via x402-enabled APIs and provides queryable data about wallets (buyers), merchants (sellers), facilitators, and registered resources. Optional query parameters allow filtering by chain (`base` or `solana`) and timeframe (1, 7, 14, or 30 days lookback).
Payment is via the x402 protocol at a fixed price of $0.01 USD per request. Note that the probe returned 404 on both GET and POST for this specific hardcoded wallet address, which may indicate the address has no indexed data or the URL path format differs from the OpenAPI spec's parameterized route `/api/x402/wallets/{address}/stats`. The canonical parameterized endpoint documented in the OpenAPI spec is confirmed live across the broader x402scan service.
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 participation by wallet
Fit
Best for
- —Agents that need to audit or summarize x402 micropayment activity for a wallet
- —Analytics pipelines monitoring the x402 payment ecosystem
- —Developers building tools on top of x402 protocol data
Not for
- —General-purpose blockchain explorers needing full EVM/Solana transaction history beyond x402
- —Wallets or addresses not participating in the x402 protocol
- —Real-time streaming transaction feeds (this is a polling/aggregate endpoint)
Quick start
curl -X GET "https://www.x402scan.com/api/x402/wallets/0x2e7e3f49bdadc6e777adc7788e58e9f26728db5b/stats?chain=base&timeframe=30" \
-H "X-Payment: <x402_payment_token>"Endpoint
Quality
The OpenAPI spec is well-documented with clear parameter definitions and pricing, but the specific probed URL returned 404 (possibly due to the hardcoded address path vs. the parameterized route). No response schema or example responses are provided. No dedicated docs page exists.
Warnings
- —Probe returned 404 on both GET and POST for this specific wallet address URL; the endpoint may only respond for wallets with indexed x402 activity, or the URL path may differ from the OpenAPI parameterized route /api/x402/wallets/{address}/stats
- —No response schema documented in the OpenAPI spec — response structure must be inferred
- —The probed URL uses /api/data/wallets/ but the OpenAPI spec documents /api/x402/wallets/ — the path prefix may be incorrect in the listing
Citations
- —Endpoint is documented as GET /api/x402/wallets/{address}/stats returning aggregate stats (tx count, total amount, unique recipients) at $0.01 per callhttps://www.x402scan.com
- —x402scan is described as 'The x402 analytics dashboard and block explorer' built by Merit Systemshttps://www.x402scan.com
- —Optional query parameters include chain (base, solana) and timeframe (1, 7, 14, or 30 days)https://www.x402scan.com
- —OpenAPI spec confirms fixed price of $0.01 USD for wallet stats endpointhttps://www.x402scan.com