Identity Fraud Check
Identity Fraud Check API for KYC fraud detection using identity verification, address checks, and authoritative source analysis.
Run an identity fraud check
Check request
Attribute
Type
Description
Example requests
curl -X POST https://api.complycube.com/v1/checks \
-H 'Authorization: <YOUR_API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"clientId":"CLIENT_ID",
"addressId":"ADDRESS_ID",
"type": "identity_fraud_check"
}'
const check = await complycube.check.create("CLIENT_ID", {
addressId: "ADDRESS_ID",
type: "identity_fraud_check"
});check = cc_api.check.create(
'CLIENT_ID',
'identity_fraud_check',
addressId='ADDRESS_ID'
)$result = $ccapi->checks()->create('CLIENT_ID',
['type' => 'identity_fraud_check',
'addressId' => 'ADDRESS_ID']);
