This API provides services to search and read compliance information
Data Compliance API (2)
https://developer.cdq.com/_mock/apis/data-compliance-api/api-v2/
https://api.cdq.com/data-compliance/rest/
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. |
- Mock server
https://developer.cdq.com/_mock/apis/data-compliance-api/api-v2/v2/compliancelists/screen
- Production
https://api.cdq.com/data-compliance/rest/v2/compliancelists/screen
- cURL
- Java
- JavaScript
- Python
- Node.js
curl -i -X POST \
https://developer.cdq.com/_mock/apis/data-compliance-api/api-v2/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": "2025-08-27T14:26:40Z", "screeningSettings": { … } } }