# 402.com.tr AI Wallet Report

> 402.com.tr AI Wallet Report is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-16).

Aggregates net worth, age/activity, and recent transactions for a blockchain wallet, then uses Claude to synthesize a human-readable intelligence verdict with key observations.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/ai-wallet-report
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/402-com-tr-ai-wallet-report-c54f1032
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tGxJmt6MBFOWvN_UtN6hU

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 402-com-tr-ai-wallet-report-c54f1032
```

Example prompt: Can you pull up a full wallet intelligence report for 0x1234abcd...5678 — I want to know if it's an established active wallet or something fresh and risky, along with its net worth and recent transactions.

## When to prefer this

Use this endpoint when you need a single, comprehensive wallet intelligence summary combining quantitative on-chain data (net worth, age, transactions) with a qualitative AI-generated verdict. Prefer this over separate lookup endpoints when you want an agent-ready, synthesized report rather than raw data fields.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Unsupported chain or non-Base wallet may return incomplete data
- Wallet with no on-chain history may return minimal data with a 'fresh' verdict
- Covalent API downtime may cause data fetch failures
- Claude synthesis failure may return raw data without a verdict

## How this service works

The flagship wallet report: aggregates net worth, age/activity and recent transactions, then Claude synthesizes a verdict (e.g. fresh/risky → established/active) with key observations. One call, agent-ready wallet intelligence.

## Output

A structured wallet intelligence report including net worth, wallet age, activity status, recent transactions, and a Claude-synthesized verdict (e.g. 'established/active' or 'fresh/risky') with key observations about the wallet's on-chain behavior.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Wallet address"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/402-com-tr-ai-wallet-report-c54f1032/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
