US Consolidated Screening List Scraper (OFAC, Entity List)
Pricing
from $9.23 / 1,000 results
US Consolidated Screening List Scraper (OFAC, Entity List)
Scrape the US Consolidated Screening List: merged denied-party and sanctions lists from Commerce, Treasury and State. Get names, aliases, source list, sanctions programs, addresses, country, IDs, dates and remarks for KYB, AML and compliance screening. Export to JSON, CSV or Excel.
Pricing
from $9.23 / 1,000 results
Rating
0.0
(0)
Developer
Scrapers Lat
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
13 hours ago
Last modified
Categories
Share
US Consolidated Screening List Scraper (OFAC, Entity List)
Here is one real result, with every field the actor returns:
{"id": "6147f95232b8e7cd386148e744ee54bbe4ffa7cf454ec984b16c8f45","entityNumber": null,"name": "OAO Volgogradneftemash (f.k.a. Dochernee Aktsionernoe Obshchestvo Otkrytogo Tipa Volgogradneftemash Rossiiskogo Aktsionernogo Obshchestva Gazprom)","title": null,"type": null,"sourceList": "Entity List (EL) - Bureau of Industry and Security","programs": [],"altNames": ["JSC Volgogradneftemash","Otkrytoe Aktsionernoe Obshchestvo Volgogradneftemash"],"countries": ["RU"],"addresses": [{"address": "45 Ulitsa Elektrolesovskaya","city": "Volgograd","state": "Volgogradskaya Oblast","postalCode": "400011","country": "RU"}],"ids": [],"datesOfBirth": [],"placesOfBirth": [],"nationalities": [],"citizenships": [],"startDate": "2015-12-28","endDate": null,"standardOrder": null,"licensePolicy": "Presumption of denial.","licenseRequirement": "For all items subject to the EAR. (See §744.11 of the EAR)","federalRegisterNotice": "80 FR 80643","callSign": "","vesselType": "","vesselFlag": "","vesselOwner": "","grossTonnage": "","grossRegisteredTonnage": "","remarks": "","url": "https://www.bis.gov/licensing/guidance-on-end-user-and-end-use-controls-and-us-person-controls","sourceListUrl": "https://www.bis.gov/regulations/ear/744#supplement-4-744","observedAt": "2026-08-10T14:18:43.966Z","error": null}
The most complete US Consolidated Screening List scraper available. It returns every field the official merged denied-party export exposes for each entry, normalized into flat records with clean address, ID and country arrays, and gives you 5 filters to target exactly the screening records you need.
📥 Input · 📤 Output · 💰 Pricing · ▶️ Examples
Table of contents
- What it does
- Quickstart
- Input reference
- Output reference
- Example output record
- Run via API and CLI
- Fetch results
- Billing and limits
- FAQ and troubleshooting
What it does
The actor loads the US Consolidated Screening List, the merged denied-party and sanctions dataset covering the Commerce Department (BIS), the Treasury Department (OFAC) and the State Department, applies the filters you pass as input, and writes one normalized record per matching entry to the run's dataset. Each raw source record is flattened: names and aliases, the exact source list, sanctions programs, all addresses, all government IDs (with issue and expiration dates), nationalities, citizenships, vessel and aircraft attributes, license policy and requirement, the Federal Register notice, and the official source URLs.
Missing source values are returned as null or an empty array/string exactly as the source provides them; nothing is invented. The dataset merges these lists: SDN, SSI, NS-MBS, CMIC, PLC and Capta (Treasury); Entity List, Denied Persons, Unverified, and Military End User (Commerce BIS); ITAR Debarred and Nonproliferation Sanctions (State).
Quickstart
Open the actor, paste this into the input, and press Run. It returns the first 10 records whose name or alias contains "gazprom".
{"maxRecords": 10,"query": "gazprom"}
Leave query empty to return every record on the list (subject to maxRecords). Every filter is optional; combine them to narrow the entries you collect.
Input reference
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
maxRecords | integer | no | 10 | Maximum records to collect. Free plans are capped at 10. |
query | string | no | (empty) | Return records whose name or alias contains this text, for example gazprom, ivanov, wagner. Empty returns every record. |
sourceList | string[] | no | (all) | Limit to specific lists, for example Specially Designated Nationals (SDN) - Treasury Department or Entity List (EL) - Bureau of Industry and Security. Empty includes all. |
entityType | enum | no | (any) | One of Individual, Entity, Vessel, Aircraft. Empty keeps any type. |
country | string | no | (any) | Match against addresses, nationality and citizenship. Accepts an ISO code or a name, for example RU, IR, China. |
program | string | no | (any) | Sanctions or control program code, for example UKRAINE-EO13662, IRAN, CYBER2, 561-Related. |
All filters are optional and combine with logical AND.
Output reference
One dataset item per screening entry. Types: string, integer, boolean, string[], object[], or null/empty when the source value is absent.
| Field | Type | Description |
|---|---|---|
id | string | Stable source record id. |
entityNumber | string | OFAC entity number when present, else null. |
name | string | Primary name of the sanctioned party. |
title | string | Title or role (mostly for individuals), else null. |
type | string | Entry type: Individual, Entity, Vessel, Aircraft, or null. |
sourceList | string | Full name of the list the entry comes from. |
programs | string[] | Sanctions or control program codes. Empty array when none. |
altNames | string[] | Aliases / also-known-as names. |
countries | string[] | Deduplicated countries from addresses, nationality and citizenship. |
addresses | object[] | Each address: address, city, state, postalCode, country. |
ids | object[] | Government IDs: type, number, country, issueDate, expirationDate. |
datesOfBirth | string[] | Dates of birth (individuals). |
placesOfBirth | string[] | Places of birth (individuals). |
nationalities | string[] | Nationalities. |
citizenships | string[] | Citizenships. |
startDate | string | Date the entry took effect, or null. |
endDate | string | Date the entry ended, or null. |
standardOrder | string | Standard order text, or null. |
licensePolicy | string | Export license policy, for example Presumption of denial.. |
licenseRequirement | string | License requirement text. |
federalRegisterNotice | string | Federal Register citation, for example 80 FR 80643. |
callSign | string | Vessel call sign (vessels). |
vesselType | string | Vessel type (vessels). |
vesselFlag | string | Vessel flag (vessels). |
vesselOwner | string | Vessel owner (vessels). |
grossTonnage | string | Vessel gross tonnage (vessels). |
grossRegisteredTonnage | string | Vessel gross registered tonnage (vessels). |
remarks | string | Free-text remarks from the source. |
url | string | Official source information URL. |
sourceListUrl | string | URL of the underlying list. |
observedAt | string | ISO 8601 timestamp of when the record was collected. |
error | string | null on success. On a failed run, a single item with a populated error field is written instead. |
Example output record
Real record from a live run (input {"maxRecords":10,"query":"gazprom"}):
{"id": "6147f95232b8e7cd386148e744ee54bbe4ffa7cf454ec984b16c8f45","entityNumber": null,"name": "OAO Volgogradneftemash (f.k.a. Dochernee Aktsionernoe Obshchestvo Otkrytogo Tipa Volgogradneftemash Rossiiskogo Aktsionernogo Obshchestva Gazprom)","type": null,"sourceList": "Entity List (EL) - Bureau of Industry and Security","altNames": ["JSC Volgogradneftemash", "Otkrytoe Aktsionernoe Obshchestvo Volgogradneftemash"],"countries": ["RU"],"addresses": [{ "address": "45 Ulitsa Elektrolesovskaya", "city": "Volgograd", "state": "Volgogradskaya Oblast", "postalCode": "400011", "country": "RU" }],"startDate": "2015-12-28","licensePolicy": "Presumption of denial.","licenseRequirement": "For all items subject to the EAR. (See §744.11 of the EAR)","federalRegisterNotice": "80 FR 80643","url": "https://www.bis.gov/licensing/guidance-on-end-user-and-end-use-controls-and-us-person-controls","sourceListUrl": "https://www.bis.gov/regulations/ear/744#supplement-4-744","observedAt": "2026-08-10T14:18:43.966Z","error": null}
Run via API and CLI
Start a run and wait for it to finish, then read the dataset. Replace <TOKEN> with your Apify API token.
Run synchronously and get dataset items in one call:
curl -X POST "https://api.apify.com/v2/acts/scrapers_lat~trade-screening-list-scraper/run-sync-get-dataset-items?token=<TOKEN>" \-H "Content-Type: application/json" \-d '{"query":"gazprom","country":"RU","maxRecords":25}'
Start a run asynchronously:
curl -X POST "https://api.apify.com/v2/acts/scrapers_lat~trade-screening-list-scraper/runs?token=<TOKEN>" \-H "Content-Type: application/json" \-d '{"entityType":"Vessel","maxRecords":100}'
Apify CLI:
apify call scrapers_lat/trade-screening-list-scraper \--input '{"query":"wagner","maxRecords":10}'
Fetch results
Every run writes to a dataset. Fetch items as JSON, CSV, or Excel by changing format:
# JSONcurl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&clean=true&format=json"# CSVcurl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&clean=true&format=csv"# Paginate large datasetscurl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&offset=1000&limit=1000"
<DATASET_ID> is returned as defaultDatasetId in the run object. Use offset and limit to page through large result sets. clean=true drops empty and internal fields.
Billing and limits
- Pay per result. You are charged per record returned (
resultevent). See the pricing tab for the current per-result price. - No charge on failure. If a run errors, the actor writes a single item with a populated
errorfield and does not charge for it. Empty runs cost nothing. - Spend cap respected. Set
maxTotalChargeUsdon the run; once reached, the actor stops emitting and charging further billable results. - Free Apify plans are capped at 10 records per run. Upgrade for higher
maxRecords.
FAQ and troubleshooting
A run returned 0 records. Why?
The filter combination matched nothing. Loosen filters (remove country or program, or clear query). Zero-result runs are not charged.
Which lists are covered? The merged US Consolidated Screening List: SDN, SSI, NS-MBS, CMIC, PLC and Capta (Treasury/OFAC); Entity List, Denied Persons, Unverified and Military End User (Commerce BIS); ITAR Debarred and Nonproliferation Sanctions (State).
Can I screen a single name?
Yes. Set query to the name or alias. Matching is case-insensitive and checks both the primary name and every alias.
Why are some fields empty strings instead of null? Vessel and remarks fields arrive as empty strings in the source for non-vessel entries. The actor preserves the source shape rather than reformatting it.
Is this an official government tool? No. This actor is independent and has no affiliation with the US government. It reads only the publicly available Consolidated Screening List published by trade.gov. Use it in accordance with the source terms.
Related scrapers
- OFAC Sanctions List Scraper: US Treasury OFAC SDN and Consolidated lists.
- SEC EDGAR Company Filings Scraper: SEC filings by ticker or CIK.
- Federal Register Document Scraper: US Federal Register documents.
More scrapers at scrapers.lat
Built and maintained by scrapers.lat, where we publish scrapers for US and Latin American public platforms: company registries, government data, finance, e-commerce and more. Browse the catalog or request a custom scraper at scrapers.lat.
Independent tool, not affiliated with the US Department of Commerce, Treasury or State. Accesses only the publicly available US Consolidated Screening List. Use in accordance with the source terms of service.
