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 0x105850baab7cb525b8e3b9a2be6e7dcbbecf9243), it returns metrics such as transaction count, total transfer amount, and unique recipients. It is part of x402scan, a payment data explorer and analytics dashboard for the x402 protocol, built by Merit Systems.
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. x402scan indexes on-chain USDC transfers associated with x402-protected API calls across Base and Solana networks.
Note: The probe returned 404 for this specific wallet address on both GET and POST, which likely means this particular address has no indexed data rather than the endpoint being down. The broader x402scan API surface (documented via OpenAPI) covers wallets, merchants, facilitators, resources, and a registry, all at $0.01–$0.02 per query. The origin landing page loads successfully (HTTP 200).
Capabilities
Use cases
- —Retrieve aggregate payment statistics for a specific wallet participating in x402 micropayments
- —Monitor wallet activity across Base and Solana chains over configurable time windows
- —Build dashboards tracking x402 ecosystem participation by wallet address
- —Audit a wallet's x402 spending history (transaction count, volume, unique recipients)
Fit
Best for
- —Agents needing on-chain x402 payment analytics for a specific wallet
- —Developers building x402 ecosystem monitoring tools
- —Researchers analyzing micropayment adoption across Base and Solana
Not for
- —General-purpose blockchain explorers (this only covers x402-indexed transfers)
- —Wallets or addresses with no x402 activity (will return no data)
- —Real-time transaction streaming or webhooks
Quick start
curl -X GET "https://www.x402scan.com/api/x402/wallets/0x105850baab7cb525b8e3b9a2be6e7dcbbecf9243/stats?chain=base&timeframe=30" \
-H "X-Payment: <x402_payment_token>"Endpoint
Quality
Full OpenAPI schema is available with clear parameter definitions and pricing, but the specific probed URL returned 404 (possibly due to the hardcoded wallet address having no data). No response examples are documented, and no dedicated docs page exists. The broader API surface is well-described but this specific endpoint could not be confirmed live.
Warnings
- —Probe returned 404 for this specific wallet address on both GET and POST — the address may have no indexed x402 activity, or the URL path format differs from the OpenAPI spec (spec uses /api/x402/wallets/{address}/stats, probed URL uses /api/data/wallets/{address}/stats).
- —The probed URL path (/api/data/wallets/...) does not match the OpenAPI-documented path (/api/x402/wallets/...), suggesting the endpoint URL may be incorrect or outdated.
- —No response schema or example responses are provided in the OpenAPI spec.
Citations
- —Endpoint costs $0.01 per call via x402 micropaymenthttps://www.x402scan.com
- —Supports chain filter (base, solana) and timeframe filter (1, 7, 14, 30 days)https://www.x402scan.com
- —x402scan is described as 'a payment data explorer and registry for the x402 protocol'https://www.x402scan.com
- —Built by Merit Systemshttps://www.x402scan.com
- —OpenAPI spec documents the wallet stats endpoint at /api/x402/wallets/{address}/statshttps://www.x402scan.com