# x402scan Wallet Stats

> x402scan Wallet Stats is a paid API for AI agents from x402scan-j55w7ornb-merit-systems.vercel.app, paid per call via x402, $0.010000/call, status unknown (last checked 2026-09-14).

Returns aggregated on-chain statistics for a specific wallet address, including transaction counts, balance summaries, and activity metrics, filterable by chain and timeframe.

## Facts

- Endpoint: GET https://x402scan-j55w7ornb-merit-systems.vercel.app/api/data/wallets/0xf7b1356cfed0eebe01d76da7ba9e9f8bf12d9d57/stats
- Price: $0.010000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402scan-j55w7ornb-merit-systems-vercel-app-526c09ed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WUP7Wz46DBNIx5LrdoCY2

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability x402scan-j55w7ornb-merit-systems-vercel-app-526c09ed
```

Example prompt: Pull the aggregated on-chain stats for wallet 0xf7b1356cfed0eebe01d76da7ba9e9f8bf12d9d57 on Base over the last 30 days — I want to see transaction counts and activity metrics.

## When to prefer this

Use this endpoint when you need aggregated statistical summaries for a specific wallet (tx count, volume, unique recipients) rather than raw transaction lists. Ideal for dashboards, wallet scoring, or activity-level analysis. Prefer over the transaction history endpoint when you need computed aggregates rather than paginated raw records.

## Known failure modes

- Invalid wallet address format returns 400 error
- Unsupported chain value returns validation error
- Unsupported timeframe value returns validation error
- Payment not provided or insufficient returns 402 Payment Required
- Wallet address not indexed returns empty stats or 404
- Network congestion may cause slow response

## How this service works

Fetch aggregated on-chain statistics for a specified wallet address, including balance summaries, transaction counts, and activity metrics.

## Output

Returns aggregated wallet statistics including transaction counts, balance summaries, total amounts transacted, unique recipient counts, and activity metrics. Optionally scoped to 'base' or 'solana' chains and a lookback window of 1, 7, 14, or 30 days.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "chain": {
       "enum": [
        "base",
        "solana"
       ],
       "type": "string",
       "description": "Filter by chain"
      },
      "timeframe": {
       "type": "number",
       "description": "Days lookback (1, 7, 14, or 30)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "_x402",
  "_paymentRequired",
  "_wwwAuthenticate"
 ],
 "properties": {
  "_x402": {
   "type": "boolean"
  },
  "_paymentRequired": {
   "type": "boolean"
  },
  "_wwwAuthenticate": {
   "type": "null"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402scan-j55w7ornb-merit-systems-vercel-app-526c09ed/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402scan-j55w7ornb-merit-systems.vercel.app](https://www.zero.xyz/host/x402scan-j55w7ornb-merit-systems.vercel.app/llms.txt)
