# Eagle Eye Wallet Compliance Screening

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

Screens a single EVM wallet address against OFAC SDN and Circle USDC blacklists on Base, returning a signed audit receipt for enterprise compliance.

## Facts

- Endpoint: POST https://eagle.quickai.build/check
- Price: $0.005/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-screening-d3e8a220
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OKzcwicEk4EQJU049UC03

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-screening-d3e8a220 -d '<json body>'
```

Example prompt: Can you run an OFAC and Circle USDC blacklist compliance check on the wallet address 0x4838B106FCe9647Bdf1E7877BF73cE8B0BAD5f97 and give me a signed audit receipt for our records?

## When to prefer this

Choose this endpoint when you need certified, enterprise-grade OFAC SDN and Circle USDC blacklist screening for a single EVM wallet address on Base, with a signed audit receipt for compliance recordkeeping. Prefer it over generic blockchain analytics tools when you specifically need OFAC + Circle dual-list coverage, a signed receipt for audit trails, and U.S. enterprise compliance standards.

## Known failure modes

- Invalid address format (not a valid 0x-prefixed 40-hex-char EVM address) returns a validation error
- Address not found on either list returns clean/pass result — not an error
- Payment failure or insufficient USDC balance returns 402 Payment Required
- Service unavailability or upstream OFAC/Circle data feed issues return 5xx errors
- Malformed request body returns 400 Bad Request

## 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 single-address check.

## Output

Returns a compliance verdict indicating whether the screened address appears on the OFAC SDN list or Circle USDC blacklist on Base, along with a cryptographically signed audit receipt suitable for enterprise compliance 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-screening-d3e8a220/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)
