# 402.com.tr AI Wallet Security Audit

> 402.com.tr AI Wallet Security Audit 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).

Fetches active token approvals for a wallet and uses Claude to generate a security audit with risk level, USD at risk, and specific revoke recommendations.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/ai-wallet-security
- 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-security-audit-79f66832
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4vm7eWKF9WH9QAX9KrZda

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-security-audit-79f66832
```

Example prompt: Can you run a security audit on my wallet 0x4b20993Bc481177ec7E8f571ceCaE8A9e22C02db and tell me the overall risk level, how much USD is at risk, and which token approvals I should revoke?

## When to prefer this

Use this endpoint when you need an AI-interpreted, human-readable security audit rather than raw approval data. It combines on-chain approval fetching with Claude's analysis to produce actionable recommendations — ideal for wallet safety checks before trusting an address or before executing a transaction. Prefer this over the raw approval ranking endpoint when you need explanations and recommendations, not just ranked lists.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Wallet with no token approvals may return minimal or empty audit
- Network/RPC issues fetching on-chain approval data
- Payment failure (insufficient USDC balance) blocks the request
- Rate limiting if too many requests are made in quick succession

## How this service works

Pulls a wallet's active token approvals and Claude writes a security audit: overall risk level, USD at risk, and concrete revoke recommendations (which token/spender and why). The wallet-safety check agents and users run before trusting an address.

## Output

A Claude-generated security audit report that includes: an overall risk level classification, estimated USD value at risk, and concrete revoke recommendations specifying which token/spender pairs to revoke and why — structured to help users act immediately on dangerous approvals.

## 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-security-audit-79f66832/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)
