# Eagle Eye Wallet Compliance Screener

> Eagle Eye Wallet Compliance Screener is a paid API for AI agents from eagle.quickai.build, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-14).

Screens an EVM wallet address against OFAC SDN and Circle USDC blacklists, returning a signed audit receipt and wallet activity profile for U.S. enterprise compliance.

## Facts

- Endpoint: POST https://eagle.quickai.build/check/profile
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/eagle-eye-wallet-compliance-screener-a40e07fa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yUSmBu6hlHBP2X12OwtuS

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 eagle-eye-wallet-compliance-screener-a40e07fa -d '<json body>'
```

Example prompt: Before I send funds, can you run a compliance screen on wallet 0x1234567890abcdef1234567890abcdef12345678 — check it against OFAC SDN and the Circle USDC blacklist and give me the signed audit receipt?

## When to prefer this

Choose Eagle Eye when you need U.S. enterprise-grade OFAC SDN screening combined with Circle USDC blacklist checking and a cryptographically signed audit receipt in a single call. Prefer this over generic blockchain analytics tools when you specifically need a compliance receipt for regulatory documentation, or when operating on the Base network with USDC and need both government and stablecoin-issuer blacklist coverage simultaneously.

## Known failure modes

- Invalid address format (not a 40-character hex EVM address) returns a validation error
- Address not found on-chain may return an empty activity profile
- Payment failure or insufficient USDC balance blocks the request
- Network timeouts if Base or OFAC data sources are temporarily unavailable
- Stale sanctions list data if the upstream feed has not been refreshed

## How this service works

Eagle Eye v1.0.0 — U.S. enterprise-grade wallet compliance screening. OFAC SDN + Circle USDC blacklist on Base. Signed audit receipts. Certified check with wallet activity profile (+$0.001).

## Output

Returns a compliance verdict indicating whether the wallet appears on the OFAC SDN list or Circle USDC blacklist, a wallet activity profile summarizing on-chain behavior, and a cryptographically signed audit receipt suitable for regulatory recordkeeping.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "address": {
   "type": "string",
   "pattern": "^0x[a-fA-F0-9]{40}$",
   "description": "EVM destination address to screen"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/eagle-eye-wallet-compliance-screener-a40e07fa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from eagle.quickai.build](https://www.zero.xyz/host/eagle.quickai.build/llms.txt)
