Eagle Eye v1
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.
5000 (raw units)
price
11
calls / 30d
8
unique payers
2026-09-17
updated
Provider
eagle.quickai.build · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x85557C90027354eAeFFe9Ee4B4f4014818d8D3e1",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"address": "0x0330070FD38Ec3bB94F58FA55D40368271E9e54A"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"address": "0x0330070FD38Ec3bB94F58FA55D40368271E9e54A",
"audit_signature": "0xabc123...",
"audit_timestamp": "2026-05-23T16:35:10Z",
"is_blacklisted": false,
"is_sanctioned": true,
"memo": "Eagle Eye screened address 0x0330...e54A against the U.S. Treasury OFAC SDN digital currency registry (snapshot: 2026-05-23T06:00:00Z, 847 addresses) and the Circle USDC blacklist on Base mainnet. The address matched entry LAZARUS GROUP (SDN List, added 2022-04-14). Verdict: FAIL.",
"reasons": [
"OFAC SDN Match: LAZARUS GROUP (added 2022-04-14)"
],
"risk_score": 100,
"signer_address": "0x0000000000000000000000000000000000000001",
"snapshot_timestamp": "2026-05-23T06:00:00Z",
"verdict": "FAIL"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"address": {
"description": "EVM destination address to screen",
"pattern": "^0x[a-fA-F0-9]{40}$",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"address": {
"type": "string"
},
"audit_signature": {
"type": "string"
},
"audit_timestamp": {
"type": "string"
},
"is_blacklisted": {
"type": "boolean"
},
"is_sanctioned": {
"type": "boolean"
},
"memo": {
"type": "string"
},
"profile": {
"properties": {
"active": {
"type": "boolean"
},
"age_days": {
"type": [
"number",
"null"
]
},
"first_seen_block": {
"type": [
"integer",
"null"
]
},
"tx_count": {
"type": "integer"
}
},
"type": "object"
},
"reasons": {
"items": {
"type": "string"
},
"type": "array"
},
"risk_score": {
"type": "integer"
},
"signer_address": {
"type": "string"
},
"snapshot_timestamp": {
"type": "string"
},
"verdict": {
"enum": [
"PASS",
"FAIL"
],
"type": "string"
}
},
"required": [
"address",
"verdict",
"is_sanctioned",
"is_blacklisted",
"risk_score",
"reasons",
"memo",
"audit_timestamp",
"snapshot_timestamp",
"audit_signature",
"signer_address"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://eagle.quickai.build/check" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://eagle.quickai.build/check");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://eagle.quickai.build/check")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/1388.json, and this resource appears in /discovery/resources and /discovery/search.