# GoCreative Sanctions Screening API

> GoCreative Sanctions 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-09).

Screens a name, entity, or identifier against official sanctions lists to determine if they appear on any government or international sanctions databases

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/data/sanctions-screen/%7Barg%7D
- Price: $0.45/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-09
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-sanctions-screening-api-2bcd6159
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YWsTxuGM68muwuZwdxxpF

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-screening-api-2bcd6159
```

Example prompt: Can you run a sanctions screen on 'Rosneft Oil Company' to check whether it appears on any official sanctions lists before we proceed with this contract?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call sanctions check against official government data sources without setting up an API key or subscription. Ideal for AI agents performing KYC/AML compliance workflows, due diligence on counterparties, or pre-transaction screening. Prefer this over subscription-based compliance platforms when call volume is low or sporadic and you want USDC micropayment billing.

## Known failure modes

- Empty or ambiguous input string may return no results or broad false positives
- Name variations or transliterations may cause misses — exact spelling matters
- Payment failure via x402 returns 402 status before data is delivered
- Rate limits or upstream data source unavailability may cause 5xx errors
- Very common names may return excessive false-positive matches requiring manual review

## How this service works

Keyless, pay-per-call compliance &amp; regulated-data API for AI agents — OFAC wallet + sanctions/PEP + KYB screening, SEC filings, FRED economics, FDA recalls, federal awards, plus continuous monitoring. USDC on Base/Solana via x402, native MCP. No API key, no signup.

## Output

Returns sanctions screening results indicating whether the queried name or entity appears on official government or international sanctions databases, including any matched list entries, sanctions program details, and relevant identifiers for sanctioned entities.

## 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-screening-api-2bcd6159/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)
