Skip to main content

Bulk Search

AML Watcher offers a Bulk Search feature, enabling users to submit multiple search payloads in a single request. This enhancement streamlines AML compliance efforts by accelerating search processes and improving operational efficiency. With Bulk Search, users can efficiently screen customer transactions, conduct due diligence, and monitor for suspicious activities, enhancing risk detection capabilities while minimizing resource utilization.

Note: The Bulk Search feature offers a powerful capability, although it may not be available to all organizations by default.

Availability: Bulk Search availability is contingent upon organizational access privileges. If your organization requires access to this feature, please contact us at [email protected] to discuss enabling it for your account.

Limitations: In a single bulk search request, a maximum of 10 individual searches will be processed. This ensures optimal performance and resource utilization across the platform.

Endpoint: https://api.amlwatcher.com/api/bulk-search

Method: POST

Sample Request
POST /api/bulk-search HTTP/1.1
Host: api.amlwatcher.com
Content-Type: application/json
Content-Length: 1441

{
"batch_name": "Batch 1",
"api_key": "your-api-key",
"callback": "Provide a webhook",
"payloads": [
{
"name": "Donald Lu",
"unique_identifier": "",
"client_reference": "",
"birth_incorporation_date": "",
"country": [
"PK"
],
"category": [
"PEP Level 2"
],
"entity_type":[
"Person"
],
"rca_search": false,
"alias_search": true,
"ongoing_monitoring": true,
"fuzziness": 25
}
]
}

Request

ParametersRequiredTypeDescription
batch_nameYesStringThe name of batch you want to create.
Min: 2 character
Max: 100 characters
Constraint: Batch name should not consist entirely of special characters or numbers.
api_keyOptionalStringAn API key is required to perform bulk search, only if access token is not passed in authorization header as a bearer token.
callbackYesStringA callback response upon job completion will be returned to the following URL.
payloadsYesArrayArray of multiple payloads with several cases.
nameYesStringThe name of entity/business you want to search.
Min: 2 character
Max: 100 characters
Constraint: Name should not consist entirely of special characters or numbers.
countryNoArrayArray of countries based on which you want to filters reports. See Countries.
Note: ISO 3166-1 alpha-2 country codes are supported.
Example: ["CA", "IN"]
categoryYesArrayArray of categories based on which you want to filters reports. See Categories.
Example: ["Adverse Media", "SIP"]
birth_incorporation_dateNoStringDate(DD-MM-YYYY) based on which you want to filters reports.
Note: To perform year search you can use the format 00-00-1947 and vice versa for date, month or combination of the three.
Example: 10-03-1947 | 10-03-0000 | 00-03-1947 | 00-00-1947
unique_identifierNoStringUnique identifier can be used to filter the search records.
Min: 2 character
Max: 50 characters
Constraint: Unique identifier should not consist entirely of special characters.
Note: It can be any key within the data object like Passport No, National ID number.
Example: TR12345677.
alias_searchYesBooleanAlias search is used to specify whether user want to perform search within aliases or not.
Note: The default value of alias_search is True.
Example: True.
rca_searchYesBooleanRCA search is used to specify whether user want to perform search within rca or not.
Description: RCA (Relatives and Close Associates) - Immediate family members or close social or professional contacts of a government or political official, or senior executive – meaning spouses, parents, siblings, children, and spouses’ parents and siblings.
Note: The default value of rca_search is True.
Example: True.
ongoing_monitoringYesBooleanOngoing monitoring is used to monitor the cases for Ongoing AML.
Note: The default value of ongoing_monitoring is False.
Example: True.
Disclaimer: Please note that any adverse media retrieved through our API is provided as-is at the time of request, and we do not offer continuous updates or ongoing monitoring of adverse media screening.
entity_typeNoArrayEntity Type: AML screening serves the purpose of identifying individuals or entities listed in various AML databases. AML Watcher provides screening services of five types of entities i.e. Person, Company, Organization, Crypto_Wallet, Vessel and Aircraft.
Example: ["Person"].
fuzinessNoStringFuziness indicates the extent to which a search should accommodate variances between the search term and the terms being matched. A value of 0 signifies a loose match, while 100 indicates an exact match.
Note: It ranges from 0-100. By default value is 75
Example: 65
client_referenceNoStringA unique client reference can be assigned to each search.

Response

ParametersDescription
errorWhenever there is an error in your request, this param will have details of that error; otherwise it’ll remain empty.
statusThe status field is set to either “SUCCESS” or “FAIL”, indicating that the API request resulted in a successful or failure/error condition respectively.
dataAn object containing status of batch search and batch ID.
Sample Response
{
"data": {
"batch_id": "cbcbb9dcba6b80618ok5af62",
"status": "PENDING"
},
"error": false,
"status": "SUCCESS"
}