Aggregate wallet stats (tx count, volume, unique recipients) for any x402 sender address — $0.01 per call.
What it does
This endpoint returns aggregate statistics for a specific wallet address acting as a sender in the x402 payment ecosystem. Given a wallet address in the URL path, it returns metrics such as transaction count, total amount sent, 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 x402 micropayment transfers across Base and Solana chains and exposes the data through a suite of paid API endpoints. This particular endpoint costs $0.01 per request, paid via the x402 protocol (HTTP 402 micropayment). The broader x402scan API also offers endpoints for merchant stats, transaction histories, facilitator analytics, resource search, and a registry for discovering x402-protected resources.
Note: The probe returned 404 for this specific URL, which uses the path pattern `/api/data/wallets/{address}/stats`. However, the OpenAPI spec documents the equivalent endpoint at `/api/x402/wallets/{address}/stats`. The `/api/data/` prefix may be a legacy or incorrect path. Callers should use the `/api/x402/wallets/{address}/stats` path as documented in the OpenAPI specification.
Capabilities
Use cases
- —Retrieve aggregate sending statistics for a specific wallet address across x402 payments
- —Monitor a wallet's x402 spending activity over configurable time windows (1/7/14/30 days)
- —Compare wallet activity across Base and Solana chains
- —Build dashboards tracking x402 protocol adoption by analyzing sender behavior
- —Audit an agent wallet's cumulative x402 micropayment spend
Fit
Best for
- —Agents needing to inspect their own or others' x402 spending history
- —Analytics tools tracking x402 protocol ecosystem activity
- —Developers building wallet dashboards for x402-enabled applications
Not for
- —Looking up general ERC-20 or SPL token balances unrelated to x402 payments
- —Real-time transaction streaming or webhooks (this is a polling/query endpoint)
- —Wallets that only receive x402 payments (use the merchant stats endpoint instead)
Quick start
curl -X GET 'https://www.x402scan.com/api/x402/wallets/0xee36539046b8428cac71bf8e09ff09891af9fdf7/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 probed endpoint path (/api/data/) returned 404 while the spec uses /api/x402/. No response schema or example responses are provided. No crawled documentation pages were found (all returned 404).
Warnings
- —Probe returned 404 on the listed endpoint path /api/data/wallets/{address}/stats; the correct path per the OpenAPI spec is /api/x402/wallets/{address}/stats
- —No response schema is documented — the shape of the returned JSON is unknown
- —No dedicated documentation pages were found (docs, pricing, README all 404)
Citations
- —Endpoint costs $0.01 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 documents the endpoint at /api/x402/wallets/{address}/stats with operationId x402_wallets_statshttps://www.x402scan.com