# OFAC SDN Entity Status Lookup

> OFAC SDN Entity Status Lookup is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves stored sanctions detail for a single OFAC Specially Designated Nationals (SDN) entity by its entityId.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/ofac-sdn/status
- 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/ofac-sdn-entity-status-lookup-6763be0a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XnXV3AYR8gKfHAR_h7HKm

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-entity-status-lookup-6763be0a
```

Example prompt: Pull up the full OFAC SDN record for entity ID ofac:58093 — I need to see all the stored sanctions detail on that entry.

## When to prefer this

Use this endpoint when you already have a specific OFAC SDN entityId (e.g. 'ofac:58093') and need to retrieve the full stored record for that entity. Prefer this over a search endpoint when the identifier is known. Ideal for compliance workflows, AML/KYC checks, sanctions screening pipelines, or enriching a known SDN hit with detailed data.

## Known failure modes

- Entity ID not found: returns empty or 404-style response if the entityId does not exist in the store
- Missing required id parameter: no query param provided returns a listing of tracked entities rather than a single record
- Malformed entityId: incorrect format (e.g. missing 'ofac:' prefix) may return no results
- Payment failure: x402 payment not processed, endpoint returns 402 Payment Required
- Rate limiting or service downtime on Railway deployment

## How this service works

Stored detail for a single sanctioned entity (entityId like 'ofac:58093').

## Output

Returns a structured entity object containing full stored detail for the specified OFAC SDN sanctioned entity, including identifiers, names, addresses, aliases, and other sanctions-related metadata associated with that entityId.

## 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": {
      "id": {
       "type": "string",
       "description": "entityId to look up; omit to list tracked entities"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "entity": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ofac-sdn-entity-status-lookup-6763be0a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracles-production.up.railway.app](https://www.zero.xyz/host/oracles-production.up.railway.app/llms.txt)
