# GoCreative Sanctions & PEP Screening API

> GoCreative Sanctions & PEP Screening API is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.45/call, status unknown (last checked 2026-09-14).

Screens any person or company name against OFAC, EU, UK, UN, and 100+ watchlists (via OpenSanctions) and returns a PASS, WARN, or BLOCK verdict for KYC/KYB compliance.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/verdict/screen/:var1
- Price: $0.45/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-sanctions-pep-screening-api-5b2aa032
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lUdjIVvm-Bewch4uSmwsK

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 gocreative-sanctions-pep-screening-api-5b2aa032
```

Example prompt: Screen 'Vladislav Petrov' against all sanctions and PEP watchlists — OFAC, EU, UK, UN — and tell me if he passes, needs review, or should be blocked.

## When to prefer this

Choose this endpoint when you need a fast, pay-per-call sanctions and PEP screening verdict without managing API keys or subscription accounts. Ideal for AI compliance agents, onboarding workflows, or ad-hoc checks against a comprehensive multi-jurisdictional watchlist set including OFAC, EU, UK, and UN at $0.015 per call.

## Known failure modes

- Empty or malformed input string returns 400 error
- Ambiguous name with many common matches may return WARN even for benign entities
- Rate limiting or payment failure returns 402 or 429
- Service unavailable from upstream OpenSanctions data returns 503
- Name transliteration differences may cause false negatives

## How this service works

Verdict Screen — sanctions, PEP & watchlist screening for any person or company across OFAC, EU, UK, UN + 100+ lists (OpenSanctions). The keyless KYC/KYB gate; $0.015.

## Output

Returns a verdict of PASS, WARN, or BLOCK based on whether the queried name matches any entry across OFAC, EU, UK, UN, and 100+ additional watchlists via OpenSanctions. May include match details, list name, and confidence indicators.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gocreative-sanctions-pep-screening-api-5b2aa032/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
