# OFAC SDN Sanctions List Search

> OFAC SDN Sanctions List Search is a paid API for AI agents from pyfile-agent.taile3ff35.ts.net:10000, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Searches the US Treasury OFAC Specially Designated Nationals (SDN) sanctions list by name and returns matching entries with sanction programs

## Facts

- Endpoint: GET https://pyfile-agent.taile3ff35.ts.net:10000/data/sanctions
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ofac-sdn-sanctions-list-search-48ef758b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BmvOJqMAekoWeLbMgmUL-

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-sdn-sanctions-list-search-48ef758b
```

Example prompt: Can you check whether 'Viktor Bout' appears on the OFAC SDN sanctions list and show me up to 10 matches with the sanction programs they belong to?

## When to prefer this

Choose this endpoint when you need a lightweight, single-purpose OFAC SDN name search without additional enrichment layers. It is ideal for quick sanctions screening of individuals or entities by name during KYC, onboarding, or transaction monitoring workflows. If you also need GLEIF LEI or SEC EDGAR data in the same call, prefer the sibling composite counterparty due-diligence endpoint instead.

## Known failure modes

- Empty or whitespace query returns zero results or validation error
- Name spelling variations may miss matches (fuzzy matching not guaranteed)
- Partial names may return too many or too few results
- Limit parameter exceeding allowed range may cause error
- Service unavailability due to Tailscale network or upstream issues
- Payment failure (x402) prevents access to the endpoint
- Very common names may return large result sets requiring higher limit values

## How this service works

Search the US Treasury OFAC SDN sanctions list by name. ?q=<name>&limit=10

## Output

Returns a JSON object containing: the original query string, a boolean 'sanctioned' flag indicating whether any matches were found, total number of matches, a list of matching SDN entries each with name, entity type (individual/entity/vessel etc.), and associated sanction programs (e.g. IRAN, SDGT, CYBER), plus the total count of entries in the full SDN list and the data source identifier.

## 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",
     "properties": {
      "q": {
       "type": "string"
      },
      "limit": {
       "type": "number"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "query": {
     "type": "string"
    },
    "source": {
     "type": "string"
    },
    "matches": {
     "type": "integer"
    },
    "results": {
     "type": "array",
     "items": {
      "type": "object",
      "properties": {
       "name": {
        "type": "string"
       },
       "type": {
        "type": "string"
       },
       "programs": {
        "type": "array",
        "items": {
         "type": "string"
        }
       }
      }
     }
    },
    "list_total": {
     "type": "integer"
    },
    "sanctioned": {
     "type": "boolean"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ofac-sdn-sanctions-list-search-48ef758b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pyfile-agent.taile3ff35.ts.net:10000](https://www.zero.xyz/host/pyfile-agent.taile3ff35.ts.net%3A10000/llms.txt)
