# OFAC Sanctions Screening via Fuzzy Name Matching

> OFAC Sanctions Screening via Fuzzy Name Matching is a paid API for AI agents from defi-shield-hazel.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-16).

Screens a name against the OFAC SDN (Specially Designated Nationals) sanctions list using fuzzy matching to identify potential sanctions violations

## Facts

- Endpoint: POST https://defi-shield-hazel.vercel.app/api/safety/sanctions-check
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/defi-shield-hazel-vercel-app-d4234db7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ahx2hBgxsw_GkzvogOC4i

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 defi-shield-hazel-vercel-app-d4234db7 -d '<json body>'
```

Example prompt: Can you run an OFAC sanctions check on the name 'Viktor Petrov' and tell me if there's a fuzzy match on the SDN list?

## When to prefer this

Use this endpoint when you need to screen a person, organization, or entity name against the US OFAC SDN sanctions list with fuzzy matching tolerance — especially useful for DeFi/Web3 compliance workflows where exact name spelling cannot be guaranteed. Prefer this over exact-match solutions when dealing with transliterated or potentially misspelled names.

## Known failure modes

- Name too short or ambiguous — low-confidence fuzzy match returned
- SDN list data may not be fully up to date — stale match results
- Common names may produce high false-positive rates
- Missing or malformed name input returns validation error
- Service unavailable or payment failure returns error response

## Output

Returns whether the provided name matches any entry on the OFAC SDN list, along with a fuzzy match score and the closest matching SDN entry details, enabling compliance decisions.

## Example request

```json
{
 "input": {
  "body": {
   "name": "John Smith",
   "country": "US"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body",
    "method"
   ],
   "properties": {
    "body": {
     "properties": {
      "name": {
       "type": "string",
       "description": "Name to screen against OFAC SDN list (min 2 chars)"
      },
      "country": {
       "type": "string",
       "description": "Optional country filter"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/defi-shield-hazel-vercel-app-d4234db7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from defi-shield-hazel.vercel.app](https://www.zero.xyz/host/defi-shield-hazel.vercel.app/llms.txt)
