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 0x7c068679afd24f4f3dc370cba2289b37e58da2e9), it returns metrics such as transaction count, total volume, and unique recipients. It is part of the broader x402scan analytics platform operated by Merit Systems, which indexes x402 protocol payment data across Base and Solana chains.
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 request, paid via the x402 micropayment protocol. The endpoint is one of many data query endpoints on x402scan; sibling endpoints cover merchant stats, facilitator stats, transaction histories, resource listings, and full-text search across indexed x402 resources.
Note: The probe returned 404 for this specific wallet address on both GET and POST, which likely means the particular wallet has no indexed data rather than the endpoint being down. The OpenAPI spec confirms the general /api/x402/wallets/{address}/stats pattern is a valid, documented route. The broader x402scan origin returned HTTP 200 and the platform dashboard shows active ecosystem stats (97K+ transactions, $17K+ volume in the past 24 hours at time of crawl).
Capabilities
Use cases
- —Retrieve aggregate payment statistics for a specific wallet 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
- —Feed wallet-level x402 metrics into dashboards or agent decision-making pipelines
- —Audit x402 protocol usage for a given sender address
Fit
Best for
- —Agents or dashboards that need quick aggregate stats on x402 wallet activity
- —Developers building analytics on top of the x402 payment protocol
- —Monitoring spending patterns of specific wallets in the x402 ecosystem
Not for
- —General-purpose blockchain explorers needing full on-chain transaction data beyond x402 payments
- —Querying wallets with no x402 transaction history (returns 404)
- —Real-time streaming of transactions (this is a polling/snapshot endpoint)
Quick start
curl -X GET "https://www.x402scan.com/api/data/wallets/0x7c068679afd24f4f3dc370cba2289b37e58da2e9/stats?chain=base&timeframe=7" \
-H "X-Payment: <x402_payment_token>"Endpoint
Quality
The OpenAPI spec is well-documented with clear parameter schemas and pricing, but the specific endpoint URL probed returned 404 (likely no data for this wallet). No response schema or example responses are provided in the spec. No dedicated docs page exists. The endpoint pattern is confirmed valid but liveness for this specific address could not be verified.
Warnings
- —Probe returned 404 for this specific wallet address on both GET and POST — the wallet may have no indexed x402 data, or the URL path may differ from the OpenAPI pattern (/api/x402/wallets/{address}/stats vs /api/data/wallets/{address}/stats).
- —The endpoint URL uses /api/data/ but the OpenAPI spec documents /api/x402/ — these may be different route prefixes; verify the correct base path.
- —No response schema or example responses are documented in the OpenAPI spec.
- —No dedicated documentation page found (x402scan.com/docs returns 404).
Citations
- —The 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 operated by Merit Systemshttps://www.x402scan.com
- —OpenAPI spec describes /api/x402/wallets/{address}/stats with aggregate stats for a wallethttps://www.x402scan.com
- —Dashboard shows 97.43K transactions and $17.06K volume in past 24 hourshttps://www.x402scan.com