BIS Entity List
The Entity List is maintained by the Bureau of Industry and Security (BIS) within the US Department of Commerce.
Overviewβ
| Attribute | Value |
|---|---|
| List ID | bis_entity |
| Authority | Bureau of Industry and Security |
| Entities | ~500 |
| Update Frequency | Weekly |
| Legal Basis | Export 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β
| Aspect | OFAC Lists | BIS Entity List |
|---|---|---|
| Authority | Treasury | Commerce |
| Focus | Asset blocking | Export controls |
| Primary Effect | Transaction prohibition | License requirement |
| Scope | Financial transactions | Goods & technology |
Entity Typesβ
| Type | Description |
|---|---|
organization | Companies, research institutions |
individual | Scientists, executives |
government | Government 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β
| Requirement | Description |
|---|---|
| All items subject to EAR | License needed for any controlled item |
| Specific ECCN | License for certain classification numbers |
| Technology only | License for technical data/software |
License Policiesβ
| Policy | Meaning |
|---|---|
| Presumption of denial | License likely rejected |
| Case-by-case review | Individual assessment |
| Presumption of approval | License 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:
| Sector | Description |
|---|---|
| Technology | Semiconductors, AI, quantum |
| Aerospace | Aircraft, satellites, components |
| Telecommunications | Network equipment, 5G |
| Defense | Military suppliers, contractors |
| Research | Universities, 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β
| Attribute | Value |
|---|---|
| Source | BIS Website |
| URL | bis.doc.gov/entity-list |
| Format | PDF, Excel |
| Update Day | Mondays |
Related Resourcesβ
SanctionsWise API is a product of OrchestraPrime LLC