Request - Single check
Requirements
- API key
- Services
enabled
on your environment (done by iDenfy's staff) - Credits for each service used
aml single check
Authorization: API key pair
Method: POST
Endpoint: https://ivs.idenfy.com/fraud/check
limitations
- AML checks can check only one entity at a time
- Checks that are not being done are omitted from response
Calling the API:
Request Parameters
Data Preprocessing
Before AML checks are performed (for Identity, Business, or AML verification), the system preprocesses data to handle special characters and formatting.
For example, a name like "John Smith" will match variations such as: John-Smith
, John - Smith
, "John Smith"
, John & Smith
, John @ Smith
, etc.
Response structure & Examples
Check | |
---|---|
AML | See Response - Person |
COMPANY | See Response - Company. |
LID | See Response - LID. Lithuanian only |
Request example - AML
{
"mode": "DATA",
"services": ["AML"],
"data": [
{
"probability": 100,
"name": "Alexander",
"surname": "Lukashenko",
"nameCheck": true,
"negativeNews": false
}
]
}
Request example - COMPANY
{
"mode": "DATA",
"services": ["COMPANY"],
"data": [
{
"companyName": "MY AVIATION COMPANY LIMITED",
"negativeNews": false,
"nameCheck": true
}
]
}