# CompliAPI Email Sanctions Screener

> CompliAPI Email Sanctions Screener is a paid API for AI agents from api.compliapi.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Screens an email address against OFAC, EU, UK, and other global sanctions lists to determine if the address owner may be a sanctioned entity

## Facts

- Endpoint: GET https://api.compliapi.com/api/v1/screen/email/%7Bemail%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/compliapi-email-sanctions-screener-4cda1c5a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x3B_-CgoqI_5bCeJYf-LZ

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 compliapi-email-sanctions-screener-4cda1c5a
```

Example prompt: Before I onboard this new user, can you screen their email address user@example.com against OFAC, EU FSF, and UK FCDO sanctions lists to make sure they're not flagged?

## When to prefer this

Use this endpoint when you need to screen a specific email address against OFAC and other global sanctions lists as part of KYC, AML, or onboarding workflows. Prefer this over name-based or ID-based screening when the primary identifier is an email address. It is distinct from the IP/VPN check or country-level sanctions endpoint — use those sibling endpoints for geographic or network-layer compliance checks.

## Known failure modes

- Invalid or malformed email address returns an error or empty result
- Unknown list slug in optional 'lists' parameter may return an error or be ignored
- Rate limiting or payment failure (x402) returns 402 Payment Required
- Network timeout for real-time lookup if sanctions database is temporarily unavailable
- False negatives possible if sanctions lists are not fully up to date

## How this service works

Easy OFAC sanction list lookups, geo-fencing checks and VPN detection, streamlining compliance obligations around the world.

## Output

Returns a JSON object with the screened email value, a boolean 'flagged' field, a 'sanctioned' boolean, an array of 'matches' (any hits found on sanctions lists), and a 'lists_checked' array enumerating all sanctions databases that were queried (e.g. ofac, ofac_consolidated, eu_fsf, uk_fcdo_sanctions).

## 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"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "email"
     ],
     "properties": {
      "email": {
       "type": "string",
       "description": "Email address to screen"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "lists": {
       "type": "string",
       "description": "Optional comma-separated list slugs to screen against (e.g. ofac,ofac_consolidated); defaults to all enabled lists. GET /api/v1/screen/lists enumerates them."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "value": "compliance@example.com",
  "flagged": false,
  "matches": [],
  "sanctioned": false,
  "lists_checked": [
   "ofac",
   "ofac_consolidated",
   "eu_fsf",
   "uk_fcdo_sanctions"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/compliapi-email-sanctions-screener-4cda1c5a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.compliapi.com](https://www.zero.xyz/host/api.compliapi.com/llms.txt)
