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 (as a path parameter), it returns metrics such as transaction count, total transfer amount, and unique recipients. The data can be filtered by chain (Base or Solana) and by 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 USDC transfers made via x402-enabled endpoints across Base and Solana chains, tracking buyers, merchants, facilitators, and resources. The wallet stats endpoint is one of several data query endpoints, all priced at $0.01 per call via x402 micropayment. The broader API also offers merchant stats, transaction histories, facilitator analytics, resource search, and a registry for x402-protected resources.
Note: The probe returned 404 for this specific endpoint URL, which includes a hardcoded wallet address in the path. The OpenAPI spec defines the endpoint pattern as `/api/x402/wallets/{address}/stats` (under the `/api/x402/` prefix), but the probed URL uses `/api/data/wallets/...` which appears to be a legacy or alternate path. The canonical endpoint per the OpenAPI spec is at `/api/x402/wallets/{address}/stats`. The broader x402scan origin is live (root returns 200) and the OpenAPI spec is well-documented.
Capabilities
Use cases
- —Retrieve aggregate payment statistics for a specific wallet address participating in x402 transactions
- —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 needing quick wallet-level summaries of x402 payment activity
- —Analytics pipelines monitoring x402 protocol adoption per wallet
- —Developers building x402 ecosystem dashboards
Not for
- —General-purpose blockchain explorers (this only covers x402 USDC transfers, not all on-chain activity)
- —Wallets or addresses not participating in the x402 protocol
Quick start
curl -H "X-Payment: <x402-payment-header>" \
"https://www.x402scan.com/api/x402/wallets/0x6bbded16d781d35e97ac46efa655e4a7c63eb96e/stats?chain=base&timeframe=7"Endpoint
Quality
The OpenAPI spec is detailed with clear parameter definitions and pricing, but the probed URL (/api/data/wallets/...) returned 404 while the canonical path per the spec is /api/x402/wallets/{address}/stats. No response schema or example responses are documented. The origin is live and the broader API is well-described.
Warnings
- —Probed URL uses /api/data/ path prefix which returned 404; the OpenAPI spec defines the canonical path as /api/x402/wallets/{address}/stats — the listing URL may be outdated or incorrect.
- —No response schema or example response is provided in the OpenAPI spec.
- —No dedicated documentation page exists (x402scan.com/docs returns 404).
Citations
- —Endpoint is defined as GET /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
- —Supports chain filter (base, solana) and timeframe filter (1, 7, 14, or 30 days)https://www.x402scan.com
- —The probed URL /api/data/wallets/.../stats returned 404 on both POST and GEThttps://www.x402scan.com/api/data/wallets/0x6bbded16d781d35e97ac46efa655e4a7c63eb96e/stats