# VeraData Quick OFAC Sanctions Screening

> VeraData Quick OFAC Sanctions Screening is a paid API for AI agents from api.veradata.dev, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Performs a fast, low-cost OFAC-only sanctions list check on a given entity, ideal for integration testing and lightweight compliance workflows.

## Facts

- Endpoint: POST https://api.veradata.dev/sanctions/quick
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/veradata-quick-ofac-sanctions-screening-ff1601ff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qjL3n3j0GTzip19JaDCzn

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 veradata-quick-ofac-sanctions-screening-ff1601ff -d '<json body>'
```

Example prompt: Can you do a quick OFAC sanctions check on the individual 'Carlos Medina' — screen them by name to see if they appear on the OFAC list?

## When to prefer this

Choose this endpoint when you need a fast, inexpensive single-list OFAC check — especially during integration testing or for lightweight compliance workflows where multi-list global screening is not required. Prefer it over comprehensive sanctions screening endpoints when cost and speed matter more than exhaustive coverage.

## Known failure modes

- Missing required 'input.type' or 'input.method' fields returns a validation error
- Invalid entity type may result in unsupported input error
- Payment failure via x402 micropayment protocol blocks the request
- Network timeout if the OFAC data source is temporarily unavailable
- Ambiguous entity names may yield false positives or inconclusive results

## How this service works

Quick OFAC-only sanctions screening. Lower price, single-list check. Best for first-time integration testing.

## Output

Returns a sanctions screening result indicating whether the queried entity matches any entry on the OFAC list, along with match details or a clear pass status.

## 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"
    },
    "method": {
     "type": "string"
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/veradata-quick-ofac-sanctions-screening-ff1601ff/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.veradata.dev](https://www.zero.xyz/host/api.veradata.dev/llms.txt)
