# OFAC Name Screening

> OFAC Name Screening is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Screens a person or company name against the U.S. Treasury OFAC SDN list (including aliases) and returns a GO / HOLD / STOP verdict

## Facts

- Endpoint: GET https://402.com.tr/api/x402/sanctions-name
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ofac-name-screening-bd974d57
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i7ZZ5-Cxsuc2gbGrvXqMD

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-name-screening-bd974d57
```

Example prompt: Before we onboard this new supplier, can you check if 'Global Trading Partners LLC' is on the OFAC sanctions list?

## When to prefer this

Choose this endpoint when you need a fast, low-cost name-based sanctions screen against the official U.S. Treasury OFAC SDN list, especially in onboarding, KYC, or vendor due-diligence workflows. Prefer it over wallet-address-based sanctions checks when you have a person or company name but no blockchain address. It is conservative by design (full-name match only) so it minimizes false positives, making it suitable for automated gates where HOLD/STOP should trigger human review.

## Known failure modes

- Missing required 'name' query parameter returns a 400 error
- Empty string name may return an error or vacuous GO
- Names with unusual characters or transliterations may miss variant-spelled SDN entries
- Only full-name matches trigger STOP — partial overlaps return GO, potentially missing sanctions risk
- API unavailability or OFAC export staleness could affect result accuracy
- Payment failure (insufficient USDC) prevents the call from completing

## How this service works

Sanctions screening for NAMES, not wallets. Pass a person or company; get GO / HOLD / STOP against the official U.S. Treasury OFAC SDN export, including a.k.a. aliases. Conservative by design: only a full-name match is a hit. Screening aid, not a compliance determination.

## Output

Returns a verdict of GO (no match found), HOLD (partial or uncertain match warranting review), or STOP (full-name match against an OFAC SDN entry or alias), along with match details such as the matched SDN name or alias. This is a screening aid for compliance workflows, not a definitive legal compliance determination.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Person or company name"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ofac-name-screening-bd974d57/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
