# Anchor X402 Unified Wallet Intelligence Bundle

> Anchor X402 Unified Wallet Intelligence Bundle is a paid API for AI agents from api.anchor-x402.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns a combined wallet intelligence report including balances, transaction activity, identity signals, and sanctions screening for an EVM or Solana address in a single call.

## Facts

- Endpoint: POST https://api.anchor-x402.com/v1/intel/wallet
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-anchor-x402-com-a1ab45cd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zScCotnk59MdEemzIQfm7

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 api-anchor-x402-com-a1ab45cd -d '<json body>'
```

Example prompt: Pull a full wallet intel bundle for 0x742d35Cc6634C0532925a3b844Bc454e4438f44e — I need balances, recent activity, identity signals, and a sanctions check all at once.

## When to prefer this

Use this endpoint when you need multiple dimensions of wallet intelligence (balances + activity + identity + sanctions) in one atomic call rather than making separate requests to individual endpoints. It costs $0.005 USDC and is more cost-efficient and faster than chaining the individual balance, sanctions, and identity endpoints when all data is needed simultaneously.

## Known failure modes

- Invalid or malformed wallet address returns a 400 error
- Unsupported chain or address format not recognized as EVM or Solana returns an error
- Payment failure or insufficient USDC balance results in 402 Payment Required
- Network or upstream data provider timeout returns a 503 or gateway error
- Address with no on-chain history may return empty balances and activity fields

## How this service works

Unified wallet intelligence (POST wrapper, body: {wallet}) — $0.005 USDC

## Output

A unified JSON object containing the wallet's token balances, recent on-chain activity, identity-related signals (e.g. ENS, labels), and sanctions/AML screening result — all derived from a single API call for the specified EVM or Solana address.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "wallet": "0x742d35Cc6634C0532925a3b844Bc454e4438f44e"
  }
 }
}
```

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [
      "wallet"
     ],
     "properties": {
      "wallet": {
       "type": "string",
       "description": "EVM 0x… (40 hex) or Solana base58 pubkey."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "errors": [],
  "wallet": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
  "activity": {
   "has_history": true,
   "base_tx_count": 42
  },
  "balances": {
   "sol": null,
   "eth_eth": "4.21",
   "base_eth": "0.0123",
   "base_usdc": "1503.27",
   "solana_usdc": null
  },
  "identity": {
   "ens_name": "vitalik.eth",
   "sns_name": null
  },
  "sanctions": {
   "notes": "…",
   "wallet": "0xd8da…",
   "checked_at": 1746820000,
   "risk_level": "low",
   "chain_inferred": "ethereum",
   "sanctions_match": false,
   "sanctioned_lists": []
  },
  "fetched_at": 1746820000,
  "chain_inferred": "ethereum",
  "cache_age_seconds": 0
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-anchor-x402-com-a1ab45cd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.anchor-x402.com](https://www.zero.xyz/host/api.anchor-x402.com/llms.txt)
