Aggregate wallet stats (tx count, volume, unique recipients) from the x402 protocol explorer.
What it does
This endpoint returns aggregate statistics for a specific wallet address within the x402 payment ecosystem. It is part of x402scan, a payment data explorer and registry for the x402 protocol built by Merit Systems. The wallet stats endpoint provides metrics such as transaction count, total amount transferred, and unique recipients for any wallet that has participated as a sender in x402 micropayments on Base or Solana.
The endpoint accepts optional query parameters to filter by chain (base or solana) and timeframe (1, 7, 14, or 30 days lookback). It costs $0.01 per call, paid via the x402 micropayment protocol. The specific URL listed here targets a hardcoded wallet address (0xd0483935ccbf85169ba354f9ce719f49bdcb8435); the general pattern is `/api/x402/wallets/{address}/stats` where `{address}` can be any wallet.
Note: The probe returned 404 for this specific wallet address, which may indicate the address has no indexed activity or the URL path uses a legacy format (`/api/data/wallets/` vs the documented `/api/x402/wallets/`). The OpenAPI spec documents the canonical path as `/api/x402/wallets/{address}/stats`. The broader x402scan platform is live (root returns 200) and exposes a full OpenAPI 3.1.0 spec with 13+ endpoints covering wallets, merchants, facilitators, resources, and a USDC send function.
Capabilities
Use cases
- —Retrieve aggregate payment statistics for any x402 sender wallet
- —Monitor wallet activity across Base and Solana chains over configurable timeframes
- —Build dashboards tracking x402 micropayment volume and unique recipients
- —Audit a wallet's x402 spending history programmatically
Fit
Best for
- —Agents needing on-chain x402 payment analytics
- —Developers building x402 ecosystem monitoring tools
- —Wallets or dashboards displaying x402 sender activity summaries
Not for
- —General-purpose blockchain explorers (only covers x402 protocol transfers)
- —Querying non-x402 token transfers or NFT activity
- —Free/unauthenticated bulk data access (each call costs $0.01 via x402)
Quick start
curl -H "X-Payment: <x402_payment_header>" \
"https://www.x402scan.com/api/x402/wallets/0xd0483935ccbf85169ba354f9ce719f49bdcb8435/stats?chain=base&timeframe=30"Endpoint
Quality
Full OpenAPI 3.1.0 spec is available with clear endpoint documentation and pricing. However, the specific probed URL returned 404 (possibly a path mismatch: /api/data/ vs /api/x402/), no example response schema is provided, and no crawled documentation pages exist. The endpoint's liveness for this exact URL is uncertain.
Warnings
- —Probed URL uses /api/data/wallets/ path but OpenAPI spec documents /api/x402/wallets/ — the listed URL may be a legacy or incorrect path.
- —Probe returned 404 on both GET and POST — endpoint may not be live at this exact URL.
- —No response schema or example responses are documented in the OpenAPI spec.
- —No dedicated documentation pages found (docs, pricing, README all return 404).
Citations
- —The endpoint costs $0.01 per call via x402 micropaymenthttps://www.x402scan.com
- —x402scan is a payment data explorer and registry for the x402 protocol, built by Merit Systemshttps://www.x402scan.com
- —Wallet stats endpoint returns aggregate stats: tx count, total amount, unique recipientshttps://www.x402scan.com
- —Supports filtering by chain (base, solana) and timeframe (1, 7, 14, or 30 days)https://www.x402scan.com
- —The canonical API path is /api/x402/wallets/{address}/stats per OpenAPI spechttps://www.x402scan.com