Skip to main content

BIS Lists

The Bureau of Industry and Security (BIS) within the US Department of Commerce maintains export control lists.


BIS Entity List​

Identifies foreign parties that pose a risk to US national security or foreign policy interests.

Overview​

AttributeValue
List IDbis_entity_list
AuthorityBureau of Industry and Security
Update FrequencyWeekly
Legal BasisExport Administration Regulations (EAR)

What is the Entity List?​

The Entity List identifies foreign parties for which exports, reexports, and transfers of items subject to the EAR require a license from BIS.

Key Differences from OFAC​

AspectOFAC ListsBIS Entity List
AuthorityTreasuryCommerce
FocusAsset blockingExport controls
Primary EffectTransaction prohibitionLicense requirement
ScopeFinancial transactionsGoods & technology

Entity Types​

TypeDescription
organizationCompanies, research institutions
individualScientists, executives
governmentGovernment agencies, military

Data Fields​

{
"entity_id": "sw_bis_entity_456",
"name": "Example Technology Corp",
"type": "organization",
"country": "CN",
"addresses": [
{
"street": "456 Tech Park",
"city": "Shenzhen",
"country": "CN"
}
],
"license_requirement": "For all items subject to the EAR",
"license_policy": "Presumption of denial",
"federal_register_citation": "85 FR 12345",
"date_added": "2023-05-15",
"source": {
"list_id": "bis_entity_list",
"entry_id": "456",
"last_updated": "2026-01-20T00:00:00Z"
}
}

License Requirements​

RequirementDescription
All items subject to EARLicense needed for any controlled item
Specific ECCNLicense for certain classification numbers
Technology onlyLicense for technical data/software

License Policies​

PolicyMeaning
Presumption of denialLicense likely rejected
Case-by-case reviewIndividual assessment
Presumption of approvalLicense likely granted

BIS Denied Persons List (DPL)​

Individuals and entities that have been denied export privileges by BIS.

Overview​

AttributeValue
List IDbis_dpl
AuthorityBureau of Industry and Security
Update FrequencyWeekly
Legal BasisExport Administration Regulations (EAR)

What is the Denied Persons List?​

The DPL contains individuals and entities that have had their export privileges denied by BIS, typically as a result of export control violations.

Data Fields​

{
"entity_id": "sw_bis_dpl_789",
"name": "John Doe",
"type": "individual",
"effective_date": "2024-01-15",
"expiration_date": "2034-01-15",
"standard_order": "Order denying export privileges",
"federal_register_citation": "89 FR 12345",
"source": {
"list_id": "bis_dpl",
"last_updated": "2026-01-20T00:00:00Z"
}
}

Consequences of Denial​

  • Cannot participate in any transaction involving items subject to the EAR
  • US persons prohibited from dealings
  • Export privileges denied for specified period

Screening Considerations​

Name Variations​

BIS entities often have:

  • Multiple language versions (English, Chinese, etc.)
  • Abbreviated forms
  • Parent/subsidiary relationships
{
"name": "Example Technology Corp",
"aliases": [
"Example Tech",
"η€ΊδΎ‹η§‘ζŠ€ε…¬εΈ",
"Example Technology Corporation Ltd"
]
}

Address Matching​

Address information helps confirm matches:

curl -X POST "https://api.sanctionswise.orchestraprime.ai/v1/screen/entity" \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Example Technology",
"entity_type": "organization",
"address": {
"city": "Shenzhen",
"country": "CN"
},
"lists": ["bis_entity_list", "bis_dpl"]
}'

Common Industries​

Entities on BIS lists by sector:

SectorDescription
TechnologySemiconductors, AI, quantum
AerospaceAircraft, satellites, components
TelecommunicationsNetwork equipment, 5G
DefenseMilitary suppliers, contractors
ResearchUniversities, institutes

API Examples​

Screen Against Both BIS Lists​

curl -X POST "https://api.sanctionswise.orchestraprime.ai/v1/screen/entity" \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Example Corporation",
"entity_type": "organization",
"lists": ["bis_entity_list", "bis_dpl"]
}'

Get BIS Lists Info​

curl -X GET "https://api.sanctionswise.orchestraprime.ai/v1/lists" \
-H "x-api-key: YOUR_API_KEY"

Export Compliance Integration​

Workflow Example​

def check_export_compliance(buyer_name, destination_country, product_eccn):
"""Check if export requires BIS license."""

# Screen against both BIS lists
result = sanctionswise.screen_entity(
name=buyer_name,
entity_type="organization",
address={"country": destination_country},
lists=["bis_entity_list", "bis_dpl"]
)

if result["status"] == "match":
return {
"export_allowed": False,
"reason": f"Buyer on {result['matches'][0]['list_id']}",
"license_required": True,
"license_policy": result["matches"][0].get("license_policy", "Unknown")
}

return {"export_allowed": True, "license_required": False}

Data Sources​

ListSourceFormat
Entity Listbis.doc.govPDF, Excel
Denied Persons Listbis.doc.gov/dplTXT


SanctionsWise API is a product of OrchestraPrime LLC