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 `0x29fce3950908afbe7168d47965cf5c2e5f3ff446`), it returns metrics such as transaction count, total transfer amount, and unique recipients. The data covers x402 protocol USDC transfers on Base and Solana chains, with optional filtering by chain and timeframe (1, 7, 14, or 30 days lookback).
x402scan is a payment data explorer and analytics dashboard for the x402 protocol, built by Merit Systems. It indexes on-chain x402 micropayment transfers and exposes them via a suite of paid API endpoints. This particular endpoint is one of several data-query endpoints, all priced at $0.01 per request via x402 micropayment. The broader API also offers merchant stats, facilitator analytics, resource search, a resource registry, and a USDC send capability.
Note: The probe returned 404 for this specific URL, which uses the path pattern `/api/data/wallets/{address}/stats` rather than the documented OpenAPI pattern `/api/x402/wallets/{address}/stats`. The OpenAPI spec lists the correct path as `/api/x402/wallets/{address}/stats`. The endpoint at the documented path is likely live (the OpenAPI spec is served from the same origin which returned 200), but the exact URL in this listing may be incorrect or outdated.
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 or apps that need to look up x402 payment activity for a given wallet address
- —Analytics pipelines monitoring the x402 micropayment ecosystem
- —Wallet profiling and due-diligence checks within x402-enabled services
Not for
- —General-purpose blockchain explorers needing full transaction history beyond x402 transfers
- —Wallets or addresses not participating in the x402 protocol
- —Free/unauthenticated bulk data export
Quick start
curl -H "X-Payment: <x402_payment_header>" \
"https://www.x402scan.com/api/x402/wallets/0x29fce3950908afbe7168d47965cf5c2e5f3ff446/stats?chain=base&timeframe=7"Endpoint
Quality
The OpenAPI spec is thorough and clearly documents the wallet stats endpoint at /api/x402/wallets/{address}/stats, but the actual listed URL uses /api/data/wallets/... which returned 404 on probe. No response schema or example responses are provided. The endpoint is likely functional at the correct path but the listed URL appears wrong.
Warnings
- —Probe returned 404 at the listed URL path /api/data/wallets/{address}/stats; the OpenAPI spec documents the endpoint at /api/x402/wallets/{address}/stats instead — the listing URL may be incorrect.
- —No response schema or example response is documented in the OpenAPI spec.
- —No dedicated docs page found (https://www.x402scan.com/docs returns 404).
Citations
- —The wallet stats endpoint is documented at /api/x402/wallets/{address}/stats with $0.01 fixed pricehttps://www.x402scan.com
- —x402scan is described as a payment data explorer and registry for the x402 protocol, built by Merit Systemshttps://www.x402scan.com
- —Data endpoints support chain filter (base, solana) and timeframe filter (1, 7, 14, or 30 days)https://www.x402scan.com
- —The endpoint returns aggregate stats: tx count, total amount, unique recipientshttps://www.x402scan.com