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 0xdcf8425d4c116e65b65c8d24be2e66a5a8f9faea), it provides metrics such as transaction count, total transfer volume, and unique recipients. The data covers x402 micropayment transfers on both Base and Solana chains.
The endpoint is part of x402scan, a payment data explorer and analytics platform built by Merit Systems. It indexes on-chain x402 protocol transfers and exposes them through a suite of paid API endpoints. This particular route accepts optional query parameters to filter by chain (base or solana) and timeframe (1, 7, 14, or 30 days lookback). The cost is a fixed $0.01 USD micropayment via the x402 protocol.
Note: The probe returned 404 for this specific wallet address on both GET and POST, which likely means this particular wallet has no indexed data rather than the endpoint being down. The broader x402scan API surface (documented via OpenAPI) is live, and the generic /api/x402/wallets/{address}/stats route is well-documented. The endpoint URL is parameterized with a specific address; callers should substitute their own wallet address.
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 (1, 7, 14, or 30 days)
- —Compare wallet activity across Base and Solana chains
- —Build dashboards tracking x402 ecosystem participation by wallet
Fit
Best for
- —Agents that need to look up x402 payment activity for a given wallet address
- —Analytics tools monitoring micropayment ecosystems
- —Developers building on the x402 protocol who need wallet-level metrics
Not for
- —General-purpose blockchain explorers needing full transaction details (use the transactions endpoint instead)
- —Querying wallets that have never participated in x402 transfers
- —Non-x402 token transfer analytics
Quick start
curl -H "X-Payment: <x402-payment-header>" \
"https://www.x402scan.com/api/x402/wallets/0xYOUR_ADDRESS/stats?chain=base&timeframe=7"Endpoint
Quality
The OpenAPI spec is thorough with parameter definitions and pricing, but the specific probed URL returned 404 (likely due to the hardcoded wallet address having no data). No response schema or example responses are documented. No dedicated docs page exists.
Warnings
- —Probe returned 404 for the specific wallet address 0xdcf8425d4c116e65b65c8d24be2e66a5a8f9faea — this address may have no indexed x402 activity. The generic /api/x402/wallets/{address}/stats route is documented and expected to work for wallets with data.
- —No response schema is provided in the OpenAPI spec — the shape of the returned stats object is unknown.
- —The endpoint URL is hardcoded to a specific wallet address; callers should replace it with their target address.
Citations
- —Endpoint costs $0.01 USD per call via x402 micropaymenthttps://www.x402scan.com
- —Supports chain filter (base, solana) and timeframe filter (1, 7, 14, or 30 days)https://www.x402scan.com
- —x402scan is a payment data explorer and registry for the x402 protocol, built by Merit Systemshttps://www.x402scan.com
- —OpenAPI spec describes the wallets/{address}/stats endpoint with operationId x402_wallets_statshttps://www.x402scan.com