This API provides services to search and read compliance information
Data Compliance API (2)
Request
Use this endpoint to find fuzzy candidate matches when searching in sanctions and watchlist.
By default the endpoint has SHOW_AUDIT_TRAIl feature enabled. Use the featuresOn and featuresOff fields in request to add and remove features.
Configuration that should be used during screening. If this object and configurationId are not provided screening will try to use configuration attached to the API Key. In this case if no configuration is attached to the API Key, exception will be thrown. If this object and configurationId are both provided, exception will be also thrown as only on of them is allowed.
ID of the configuration that should be used during screening. If not provided screening will try to use configuration attached to the API Key. In this case if no configuration is attached to the API Key, exception will be thrown.
List of features to be enabled.
| Items Enum Value | Description |
|---|---|
| SHOW_AUDIT_TRAIL | Show audit trail in the response. |
| ACTIVATE_STOP_WORDS | Activate detection of stop words and special calculation for matching score. |
List of features to be disabled.
| Items Enum Value | Description |
|---|---|
| SHOW_AUDIT_TRAIL | Show audit trail in the response. |
| ACTIVATE_STOP_WORDS | Activate detection of stop words and special calculation for matching score. |
- Productionhttps://api.cdq.com/data-compliance/rest/v2/compliancelists/screen
- cURL
- Java
- JavaScript
- Python
- Node.js
curl -i -X POST \
https://api.cdq.com/data-compliance/rest/v2/compliancelists/screen \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"entry": {
"names": [
{
"value": "Klaus"
}
],
"addresses": [
{
"country": {
"shortName": "DE"
}
}
]
},
"dataSources": [
{
"technicalKey": "SANCTION_LIST"
}
],
"lists": [
{
"technicalKey": "INFO4C_SL_22"
}
]
}'{ "total": "67", "nextStartAfter": "5712566172571652", "startAfter": "5712566172571652", "values": [ { … } ], "auditTrail": { "performedBy": "John Doe", "screenedNames": [ … ], "screeningDate": "2026-02-24T12:09:14Z", "screeningSettings": { … } } }