US Denied Party Screening API
Pricing
Pay per event
US Denied Party Screening API
🛡️ Batch-screen people and companies against the official US Consolidated Screening List with ranked matches, identifiers, restrictions, and source evidence.
US Denied Party Screening API
Pricing
Pay per event
🛡️ Batch-screen people and companies against the official US Consolidated Screening List with ranked matches, identifiers, restrictions, and source evidence.
You can access the US Denied Party Screening API 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.
1from apify_client import ApifyClient2
3# Initialize the ApifyClient with your Apify API token4# Replace '<YOUR_API_TOKEN>' with your token.5client = ApifyClient("<YOUR_API_TOKEN>")6
7# Prepare the Actor input8run_input = {9 "queries": [10 {11 "name": "BANK OF KUNLUN CO LTD",12 "country": "CN",13 "identifier": "CKLBCNBJ",14 "reference": "vendor-001",15 },16 {17 "name": "Acme Bicycle Shop",18 "country": "US",19 "reference": "vendor-002",20 },21 ],22 "threshold": 72,23 "matchThreshold": 90,24 "maxMatches": 5,25}26
27# Run the Actor and wait for it to finish28run = client.actor("automation-lab/us-denied-party-screening-api").call(run_input=run_input)29
30# Fetch and print Actor results from the run's dataset (if there are any)31print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])32for item in client.dataset(run["defaultDatasetId"]).iterate_items():33 print(item)34
35# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-startThe Apify API client for Python is the official library that allows you to use US Denied Party Screening API API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
$pip install apify-clientOther API clients include: