# OFAC Sanctions Screening API

> OFAC Sanctions Screening API is a paid API for AI agents from ai-data-marketplace-1042299154756.us-central1.run.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Screens a person or organization name against OFAC sanctions lists to detect exact or potential matches.

## Facts

- Endpoint: GET https://ai-data-marketplace-1042299154756.us-central1.run.app/api/v1/ofac_screen
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ofac-sanctions-screening-api-e4faa6c8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BK_3P9IYTFhSwahwdKDUN

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 ofac-sanctions-screening-api-e4faa6c8
```

Example prompt: Can you run an OFAC sanctions screen on 'Rostec Corporation' and tell me if it's an exact match, a potential match, or not listed at all?

## When to prefer this

Use this endpoint when you need a fast, low-cost ($0.005 USDC) programmatic OFAC sanctions check on a specific name — ideal for automated KYC/AML pipelines, vendor onboarding workflows, or pre-transaction due diligence where you need a boolean exact/potential match signal without building your own sanctions list integration.

## Known failure modes

- Missing required 'name' query parameter returns an error
- Name with special characters or transliterations may miss matches
- OFAC list may not be real-time; recently added entities could be missed
- Ambiguous common names may produce high false-positive potential_match rates
- Service unavailability or timeout returns a non-200 response

## How this service works

Screen a party name against the current official U.S. Treasury OFAC SDN primary-name list and return transparent potential matches.

## Output

Returns a JSON object with: success (boolean indicating API call success), exact_match (boolean — true if the name exactly matches an OFAC listed entity), potential_match (boolean — true if the name is a fuzzy/partial match), and count (integer number of matching records found).

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Party or organization name to screen."
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "success",
      "potential_match",
      "exact_match",
      "count"
     ],
     "properties": {
      "count": {
       "type": "integer"
      },
      "success": {
       "type": "boolean"
      },
      "exact_match": {
       "type": "boolean"
      },
      "potential_match": {
       "type": "boolean"
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 0,
  "success": true,
  "exact_match": false,
  "potential_match": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ofac-sanctions-screening-api-e4faa6c8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ai-data-marketplace-1042299154756.us-central1.run.app](https://www.zero.xyz/host/ai-data-marketplace-1042299154756.us-central1.run.app/llms.txt)
