๐ Sanctions Change Tracker
Pricing
from $10.00 / 1,000 results
๐ Sanctions Change Tracker
Automate OFAC compliance checks by extracting daily additions and removals from the SDN list. Generate precise JSON diffs for counterparty screening.
๐ Sanctions Change Tracker
Pricing
from $10.00 / 1,000 results
Automate OFAC compliance checks by extracting daily additions and removals from the SDN list. Generate precise JSON diffs for counterparty screening.
You can access the ๐ Sanctions Change Tracker programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, youโll need an Apify account and your API token, found in Integrations settings in Apify Console.
{ "openapi": "3.0.1", "info": { "version": "0.1", "x-build-id": "PJojMTlhXLJHgs1tq" }, "servers": [ { "url": "https://api.apify.com/v2" } ], "paths": { "/acts/taroyamada~sanctions-change-digest/run-sync-get-dataset-items": { "post": { "operationId": "run-sync-get-dataset-items-taroyamada-sanctions-change-digest", "x-openai-isConsequential": false, "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.", "tags": [ "Run Actor" ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/inputSchema" } } } }, "parameters": [ { "name": "token", "in": "query", "required": true, "schema": { "type": "string" }, "description": "Enter your Apify token here" } ], "responses": { "200": { "description": "OK" } } } }, "/acts/taroyamada~sanctions-change-digest/runs": { "post": { "operationId": "runs-sync-taroyamada-sanctions-change-digest", "x-openai-isConsequential": false, "summary": "Executes an Actor and returns information about the initiated run in response.", "tags": [ "Run Actor" ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/inputSchema" } } } }, "parameters": [ { "name": "token", "in": "query", "required": true, "schema": { "type": "string" }, "description": "Enter your Apify token here" } ], "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/runsResponseSchema" } } } } } } }, "/acts/taroyamada~sanctions-change-digest/run-sync": { "post": { "operationId": "run-sync-taroyamada-sanctions-change-digest", "x-openai-isConsequential": false, "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.", "tags": [ "Run Actor" ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/inputSchema" } } } }, "parameters": [ { "name": "token", "in": "query", "required": true, "schema": { "type": "string" }, "description": "Enter your Apify token here" } ], "responses": { "200": { "description": "OK" } } } } }, "components": { "schemas": { "inputSchema": { "type": "object", "properties": { "watches": { "title": "Watch configurations", "type": "array", "description": "One entry per watch target. Each watch produces one summary digest row. Set programs and/or sdnTypes to narrow the scope; add watchTerms for name-match alerting. If omitted, a single all-programs default watch is used.", "items": { "type": "object", "properties": { "id": { "title": "Watch ID", "description": "Stable identifier used in snapshots and output rows.", "type": "string" }, "name": { "title": "Watch name", "description": "Human-readable label for this watch in the digest output.", "type": "string" }, "watchTerms": { "title": "Watch terms (name search)", "description": "Comma-separated names or keywords to search in SDN entry names and aliases. Matching entries receive a watch_term_hit signal tag. Leave empty to match all entries in scope.", "type": "string" }, "programs": { "title": "OFAC program codes", "description": "Comma-separated OFAC program codes to include, e.g. SDGT,IRAN,CUBA,RUSSIA-EO14024. Leave empty for all programs.", "type": "string" }, "sdnTypes": { "title": "SDN entry types", "description": "Comma-separated entry types to include: Individual, Entity, Vessel, Aircraft. Leave empty for all types.", "type": "string" }, "maxEntries": { "title": "Max entries in output (per watch)", "description": "Upper bound on SDN entries nested in the digest output for this watch. Counts and summaries reflect the full matched set; this cap only limits the nested entries array.", "type": "integer", "minimum": 1, "maximum": 500, "default": 50 } } } }, "sdnXmlUrl": { "title": "OFAC SDN XML URL", "type": "string", "description": "Override the OFAC SDN XML feed URL. The default legacy URL (https://www.treasury.gov/ofac/downloads/sdn.xml) redirects to the current sanctions list service endpoint. Change only if the URL moves.", "default": "https://www.treasury.gov/ofac/downloads/sdn.xml" }, "maxEntriesPerWatch": { "title": "Global max entries per watch", "minimum": 1, "maximum": 500, "type": "integer", "description": "Default upper bound on SDN entries in the nested output per watch. Can be overridden per-watch with the maxEntries field.", "default": 50 }, "requestTimeoutSeconds": { "title": "HTTP request timeout (seconds)", "minimum": 5, "maximum": 300, "type": "integer", "description": "Timeout for the SDN XML fetch. The file is several MB so allow at least 60 seconds.", "default": 60 }, "delivery": { "title": "Delivery mode", "enum": [ "dataset", "webhook" ], "type": "string", "description": "dataset stores results in the Apify dataset. webhook posts the digest JSON to webhookUrl.", "default": "dataset" }, "webhookUrl": { "title": "Webhook URL (required when delivery=webhook)", "type": "string", "description": "POST target for the digest payload. Leave empty for dataset delivery." }, "datasetMode": { "title": "Dataset output mode", "enum": [ "all", "action_needed", "new_only" ], "type": "string", "description": "all emits every watch digest row. action_needed emits only watches with name-match hits. new_only emits only watches with entries not seen in the previous run.", "default": "all" }, "snapshotKey": { "title": "Snapshot key for recurring state", "type": "string", "description": "Stable key used to persist seen SDN entry UIDs across recurring runs so new_only and action_needed modes stay comparable. Use the same key across scheduled runs.", "default": "sanctions-change-digest-state" }, "notifyOnNoNew": { "title": "Emit digest even when no new entries found", "type": "boolean", "description": "When true, every watch always produces a digest row even if no new entries were found. When false, watches with no new entries are omitted from the output.", "default": true }, "dryRun": { "title": "Dry run (skip snapshot writes and webhook delivery)", "type": "boolean", "description": "Fetch and process without persisting state or posting webhooks. Safe for testing input shapes.", "default": false }, "nowIso": { "title": "Override current time (ISO string, for testing)", "type": "string", "description": "Set to a fixed ISO timestamp to make runs deterministic against fixture data." }, "fixturePath": { "title": "Fixture file path (testing)", "type": "string", "description": "Local XML or JSON fixture for offline tests. When set, the live OFAC SDN URL is not fetched." } } }, "runsResponseSchema": { "type": "object", "properties": { "data": { "type": "object", "properties": { "id": { "type": "string" }, "actId": { "type": "string" }, "userId": { "type": "string" }, "startedAt": { "type": "string", "format": "date-time", "example": "2025-01-08T00:00:00.000Z" }, "finishedAt": { "type": "string", "format": "date-time", "example": "2025-01-08T00:00:00.000Z" }, "status": { "type": "string", "example": "READY" }, "meta": { "type": "object", "properties": { "origin": { "type": "string", "example": "API" }, "userAgent": { "type": "string" } } }, "stats": { "type": "object", "properties": { "inputBodyLen": { "type": "integer", "example": 2000 }, "rebootCount": { "type": "integer", "example": 0 }, "restartCount": { "type": "integer", "example": 0 }, "resurrectCount": { "type": "integer", "example": 0 }, "computeUnits": { "type": "integer", "example": 0 } } }, "options": { "type": "object", "properties": { "build": { "type": "string", "example": "latest" }, "timeoutSecs": { "type": "integer", "example": 300 }, "memoryMbytes": { "type": "integer", "example": 1024 }, "diskMbytes": { "type": "integer", "example": 2048 } } }, "buildId": { "type": "string" }, "defaultKeyValueStoreId": { "type": "string" }, "defaultDatasetId": { "type": "string" }, "defaultRequestQueueId": { "type": "string" }, "buildNumber": { "type": "string", "example": "1.0.0" }, "containerUrl": { "type": "string" }, "usage": { "type": "object", "properties": { "ACTOR_COMPUTE_UNITS": { "type": "integer", "example": 0 }, "DATASET_READS": { "type": "integer", "example": 0 }, "DATASET_WRITES": { "type": "integer", "example": 0 }, "KEY_VALUE_STORE_READS": { "type": "integer", "example": 0 }, "KEY_VALUE_STORE_WRITES": { "type": "integer", "example": 1 }, "KEY_VALUE_STORE_LISTS": { "type": "integer", "example": 0 }, "REQUEST_QUEUE_READS": { "type": "integer", "example": 0 }, "REQUEST_QUEUE_WRITES": { "type": "integer", "example": 0 }, "DATA_TRANSFER_INTERNAL_GBYTES": { "type": "integer", "example": 0 }, "DATA_TRANSFER_EXTERNAL_GBYTES": { "type": "integer", "example": 0 }, "PROXY_RESIDENTIAL_TRANSFER_GBYTES": { "type": "integer", "example": 0 }, "PROXY_SERPS": { "type": "integer", "example": 0 } } }, "usageTotalUsd": { "type": "number", "example": 0.00005 }, "usageUsd": { "type": "object", "properties": { "ACTOR_COMPUTE_UNITS": { "type": "integer", "example": 0 }, "DATASET_READS": { "type": "integer", "example": 0 }, "DATASET_WRITES": { "type": "integer", "example": 0 }, "KEY_VALUE_STORE_READS": { "type": "integer", "example": 0 }, "KEY_VALUE_STORE_WRITES": { "type": "number", "example": 0.00005 }, "KEY_VALUE_STORE_LISTS": { "type": "integer", "example": 0 }, "REQUEST_QUEUE_READS": { "type": "integer", "example": 0 }, "REQUEST_QUEUE_WRITES": { "type": "integer", "example": 0 }, "DATA_TRANSFER_INTERNAL_GBYTES": { "type": "integer", "example": 0 }, "DATA_TRANSFER_EXTERNAL_GBYTES": { "type": "integer", "example": 0 }, "PROXY_RESIDENTIAL_TRANSFER_GBYTES": { "type": "integer", "example": 0 }, "PROXY_SERPS": { "type": "integer", "example": 0 } } } } } } } } }}OpenAPI is a standard for designing and describing RESTful APIs, allowing developers to define API structure, endpoints, and data formats in a machine-readable way. It simplifies API development, integration, and documentation.
OpenAPI is effective when used with AI agents and GPTs by standardizing how these systems interact with various APIs, for reliable integrations and efficient communication.
By defining machine-readable API specifications, OpenAPI allows AI models like GPTs to understand and use varied data sources, improving accuracy. This accelerates development, reduces errors, and provides context-aware responses, making OpenAPI a core component for AI applications.
You can download the OpenAPI definitions for ๐ Sanctions Change Tracker from the options below:
If youโd like to learn more about how OpenAPI powers GPTs, read our blog post.
You can also check out our other API clients: