# AutoScrape OFAC Sanctions Screening API

> AutoScrape OFAC Sanctions Screening API is a paid API for AI agents from autoscrape-api-seven.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Screens names or identifiers against the OFAC Specially Designated Nationals (SDN) list to detect potential sanctions violations

## Facts

- Endpoint: GET https://autoscrape-api-seven.vercel.app/x402/v1/ofac-sanctions-screening
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/autoscrape-ofac-sanctions-screening-api-65e91968
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_76UHGZ2XdeWND48tWZVOT

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 autoscrape-ofac-sanctions-screening-api-65e91968
```

Example prompt: Can you screen the name 'Gazprombank' against the OFAC SDN sanctions list and filter by the RUSSIA-EO14024 program to see if there's a possible match?

## When to prefer this

Choose this endpoint when you need a fast, low-cost ($0.01 USDC) programmatic check against the official OFAC SDN list as part of a KYC, AML, or vendor onboarding workflow. It is especially useful for agent-driven compliance pipelines that need no-key evaluation access or x402 micropayment-based access. Prefer this over manual OFAC portal lookups or heavier compliance platforms when you need lightweight, automatable sanctions screening with filtering by country, entity type, or specific sanctions programs like SDGT or RUSSIA-EO14024.

## Known failure modes

- Missing required 'searchTerm' or 'query' parameter returns an error
- maxResults capped at 10; requests for more will be silently limited
- No match found returns count:0 with empty results array
- Ambiguous name substrings may return false positives requiring manual review
- Network or upstream data source unavailability may cause timeouts
- Payment failure via x402 protocol blocks access to paid tier

## How this service works

No-key evaluation APIs for public data and utilities: business filings, permits, bankruptcy dockets, NPI providers, HTTP status checks, sitemap URL extraction, SEC EDGAR, IRS 990, WHOIS, and validation. Paid x402 access is live.

## Output

Returns a count of matches and an array of results, each containing the matched entity name, an outcome label (e.g. POSSIBLE_MATCH), a boolean possibleMatch flag, and an identityVerified flag indicating whether the match has been confirmed. Also includes a setupStatus field indicating data availability.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "results": [
   {
    "name": "WAGNER GROUP",
    "outcome": "POSSIBLE_MATCH",
    "possibleMatch": true,
    "identityVerified": false
   }
  ],
  "setupStatus": "found"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/autoscrape-ofac-sanctions-screening-api-65e91968/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from autoscrape-api-seven.vercel.app](https://www.zero.xyz/host/autoscrape-api-seven.vercel.app/llms.txt)
