How it Works
The AML For Business (AML-B) service enables Anti-Money Laundering (AML) screening for businesses and companies. This service helps identify whether a business appears in AML watchlists, such as those associated with corporate fraud, suspicious activities, or politically exposed persons (PEPs). By leveraging this service, organizations can assess the risk of doing business with entities that may be involved in money laundering, financial crime, or other illicit activities.
Key Features
- Business Screening: Identifies whether a company is listed on an AML watchlist or flagged for high-risk activities.
- Detailed Company Information: Provides essential details about the business, such as the name, registration number, owners, officers, and business addresses if found in the watchlist.
- Risk Detection: Highlights businesses that have been flagged in global fraud, PEP, or sanction databases, ensuring that high-risk entities are thoroughly investigated.
- Ownership and Control: Helps reveal the ownership structure of the business and related entities, which can help detect potential hidden owners linked to high-risk individuals or groups.
- Corporate Relationships: Identifies business partners or affiliates, as well as subsidiaries, that may share similar risk profiles.
Integration
Endpoint:
/api/amlbusiness
Method:
POST
Base URL:
https://api.boltidentity.com/
Request Headers:
{
"licenseKey": "YOUR_API_KEY",
"Content-Type": "application/json"
}
Request Body:
{
"company": "TOUFAILI GENERAL TRADING",
"fuzzy_amlb": "1"
}
note
Note: fuzzy_amlb
with "1" gets a more exact response, while "2" returns a less strict match.
Example Request (Using Fetch):
const response = await fetch('https://api.yourcompany.com/amlbusiness', {
method: 'POST',
headers: {
'licenseKey': 'YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
company: "TOUFAILI GENERAL TRADING"
})
});
const data = await response.json();
Sample Response:
{
"Bolt-Identity": {
"clientId": "FPC0001",
"apiService": "amlBusiness",
"requestType": "Free",
"report": {
"referenceID": "fpfr-n9kzdykeza9",
"jsonResponse": {
"businessAMLPulse": {
"status": "Declined",
"message": "Alert: The TOUFAILI GENERAL TRADING (TCM TFAYLI) has been found in the AML list.",
"response": {
"total_hits": 1,
"foundRecords": [
{
"entity_type": "UNKNOWN",
"name": "TOUFAILI GENERAL TRADING (TCM TFAYLI)",
"address": [
"Toufaili building, Main road, Deir El-Zahrani (Nabatieh)"
],
"source_id": "il_nbctf_seizure_of_terrorist_property",
"alias_names": [
"TOUFAILI GENERAL TRADING (TCM TFAYLI)"
],
"sanction_details": [
"Date of Issue (dd/mm/yyyy): 24/01/2022",
"Validity: 15/01/2024",
"Order Number - English: ASO 4/22",
"Seizure Amount: צו הגבלה",
"Reason - English: Property which was used to perpetrate a severe terror crime, which has yet to be seized"
],
"other_information": [
"Organizational Affiliation: חזבאללה",
"Lebanon"
],
"source_type": "SANCTION",
"list_date": "0"
}
]
}
}
},
"apiKeyUsed": "api-key-1728234535454-4b4i42ur874",
"requestDateTime": "2025-01-26T13:04:04.529Z"
},
"_id": "679632c4f49dead563887504",
"createdAt": "2025-01-26T13:04:04.531Z",
"updatedAt": "2025-01-26T13:04:04.531Z",
"__v": 0
}
}
Understand Response:
Field | Description | Possible Values / Examples |
---|---|---|
status | The current status of the request. | "Declined" |
message | Message related to the AML check for the business. | "Alert: The TOUFAILI GENERAL TRADING (TCM TFAYLI) has been found in the AML list." |
response.total_hits | The total number of hits found during the AML check. | 1 |
response.foundRecords | Details of the entities found in the AML list. | Array of records containing business or entity data. |
response.foundRecords.entity_type | The type of the entity found. | "UNKNOWN" |
response.foundRecords.name | The name of the entity found. | "TOUFAILI GENERAL TRADING (TCM TFAYLI)" |
response.foundRecords.address | The address of the entity. | "Toufaili building, Main road, Deir El-Zahrani (Nabatieh)" |
response.foundRecords.source_id | The source identifier for the entity's AML record. | "il_nbctf_seizure_of_terrorist_property" |
response.foundRecords.alias_names | Alternative names for the entity found. | ["TOUFAILI GENERAL TRADING (TCM TFAYLI)"] |
response.foundRecords.sanction_details | Details about the sanctions applied to the entity. | - "Date of Issue (dd/mm/yyyy): 24/01/2022" - "Validity: 15/01/2024" - "Order Number - English: ASO 4/22" - "Seizure Amount: צו הגבלה" - "Reason - English: Property which was used to perpetrate a severe terror crime, which has yet to be seized" |
response.foundRecords.other_information | Additional information about the entity. | - "Organizational Affiliation: חזבאללה" - "Lebanon" |
response.foundRecords.source_type | The type of source from where the entity was found. | "SANCTION" |
response.foundRecords.list_date | The date when the entity was added to the AML list. | "0" |