# Unified Wallet Intelligence Bundle

> Unified Wallet Intelligence Bundle is a paid API for AI agents from 1c09pdnrx1.execute-api.us-east-1.amazonaws.com, paid per call via x402, $0.005000/call, status unknown (last checked 2026-09-14).

Returns a combined intelligence report for a wallet address including balances, activity history, identity resolution, and sanctions/AML screening in a single call

## Facts

- Endpoint: GET https://1c09pdnrx1.execute-api.us-east-1.amazonaws.com/v1/intel/wallet
- Price: $0.005000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/unified-wallet-intelligence-bundle-3f6ce237
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ksThfm7_4oHCt23wLN9Tc

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 unified-wallet-intelligence-bundle-3f6ce237
```

Example prompt: Give me a full intelligence bundle on wallet 0x742d35Cc6634C0532925a3b844Bc454e4438f44e — I want balances, recent activity, identity info, and whether it's flagged for sanctions, all in one shot.

## When to prefer this

Choose this endpoint when you need a comprehensive, multi-dimensional view of a wallet in a single round-trip — combining balances, activity, identity, and sanctions. It is more cost-effective than calling the individual balance, AML, and identity endpoints separately (those total $0.003 USDC but require 3+ calls). Prefer this for due diligence, compliance workflows, or any scenario where latency from multiple calls is undesirable.

## Known failure modes

- Invalid wallet address format returns a 400 error
- Unrecognized chain or unsupported address type may return empty or partial data
- Payment failure (402) if x402 USDC micropayment is not provided
- Rate limiting or upstream data provider downtime may result in 503
- Wallet with no on-chain activity may return empty balances and activity arrays

## How this service works

Unified wallet intelligence bundle (balances + activity + identity + sanctions) — $0.005 USDC

## Output

A unified JSON object containing the wallet's token balances across chains, recent transaction activity, resolved identity/name (ENS or SNS), and sanctions/AML screening result — all bundled from a single API call at $0.005 USDC.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "wallet": "0x1234567890123456789012345678901234567890"
  }
 },
 "output": {
  "type": "object"
 }
}
```

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "wallet"
     ],
     "properties": {
      "wallet": {
       "type": "string",
       "description": "EVM 0x… (40 hex) or Solana base58 pubkey."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "errors",
  "wallet",
  "activity",
  "balances",
  "identity",
  "sanctions",
  "fetched_at",
  "chain_inferred",
  "cache_age_seconds"
 ],
 "properties": {
  "errors": {
   "type": "array",
   "items": {
    "type": "unknown"
   }
  },
  "wallet": {
   "type": "string"
  },
  "activity": {
   "type": "object",
   "required": [
    "has_history",
    "base_tx_count"
   ],
   "properties": {
    "has_history": {
     "type": "boolean"
    },
    "base_tx_count": {
     "type": "number"
    }
   }
  },
  "balances": {
   "type": "object",
   "required": [
    "sol",
    "eth_eth",
    "base_eth",
    "base_usdc",
    "solana_usdc"
   ],
   "properties": {
    "sol": {
     "type": "null"
    },
    "eth_eth": {
     "type": "string"
    },
    "base_eth": {
     "type": "string"
    },
    "base_usdc": {
     "type": "string"
    },
    "solana_usdc": {
     "type": "null"
    }
   }
  },
  "identity": {
   "type": "object",
   "required": [
    "ens_name",
    "sns_name"
   ],
   "properties": {
    "ens_name": {
     "type": "null"
    },
    "sns_name": {
     "type": "null"
    }
   }
  },
  "sanctions": {
   "type": "object",
   "required": [
    "notes",
    "wallet",
    "checked_at",
    "risk_level",
    "chain_inferred",
    "sanctions_match",
    "sanctioned_lists"
   ],
   "properties": {
    "notes": {
     "type": "string"
    },
    "wallet": {
     "type": "string"
    },
    "checked_at": {
     "type": "number"
    },
    "risk_level": {
     "type": "string"
    },
    "chain_inferred": {
     "type": "string"
    },
    "sanctions_match": {
     "type": "boolean"
    },
    "sanctioned_lists": {
     "type": "array",
     "items": {
      "type": "unknown"
     }
    }
   }
  },
  "fetched_at": {
   "type": "number"
  },
  "chain_inferred": {
   "type": "string"
  },
  "cache_age_seconds": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/unified-wallet-intelligence-bundle-3f6ce237/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 1c09pdnrx1.execute-api.us-east-1.amazonaws.com](https://www.zero.xyz/host/1c09pdnrx1.execute-api.us-east-1.amazonaws.com/llms.txt)
