Skip to main content

BIS Entity List

The Entity List is maintained by the Bureau of Industry and Security (BIS) within the US Department of Commerce.


Overview​

AttributeValue
List IDbis_entity
AuthorityBureau of Industry and Security
Entities~500
Update FrequencyWeekly
Legal BasisExport Administration Regulations (EAR)

What is the Entity List?​

The Entity List identifies foreign parties that pose a risk to US national security or foreign policy interests. Exports to listed entities 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": "bis_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",
"entry_id": "456",
"last_updated": "2025-12-08T00:00:00Z"
}
}

License Requirements​

Standard 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

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.orchestraprime.ai/sanctionswise/screen/entity \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"name": "Example Technology",
"entity_type": "organization",
"address": {
"city": "Shenzhen",
"country": "CN"
},
"lists": ["bis_entity"]
}'

Common Industries​

Entities on BIS Entity List by sector:

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

API Examples​

Screen Against BIS Only​

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

Get BIS List Info​

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

Response:

{
"list_id": "bis_entity",
"name": "BIS Entity List",
"authority": "Bureau of Industry and Security",
"description": "Export control list for parties posing national security risk",
"entity_count": 523,
"last_updated": "2025-12-08T00:00:00Z",
"update_frequency": "weekly",
"source_url": "https://www.bis.doc.gov/index.php/policy-guidance/lists-of-parties-of-concern/entity-list"
}

Export Compliance Integration​

Workflow Example​

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

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

if result["status"] == "match":
return {
"export_allowed": False,
"reason": "Buyer on BIS Entity List",
"license_required": True,
"license_policy": result["matches"][0]["license_policy"]
}

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

Data Source​

AttributeValue
SourceBIS Website
URLbis.doc.gov/entity-list
FormatPDF, Excel
Update DayMondays


SanctionsWise API is a product of OrchestraPrime LLC