New Omni documentation is now available — policy-driven document verification and API reference. Explore Omni → · Custom Theme for KYC liveform: Learn more →
New Omni documentation is now available — policy-driven document verification and API reference. Explore Omni → · Custom Theme for KYC liveform: Learn more →
Verify the authenticity of ID documents by analyzing images for tampering or forgery
curl --request POST \
--url https://idverify-api.argosidentity.com/modules/document \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"idImage": "base64_encoded_id_document_image",
"pipelines": {
"sr": true,
"pc": true,
"ps": true
},
"useUpcomingVersion": true,
"callbackUrl": "https://your-domain.com/callback"
}
'{
"apiType": "id_live_doc",
"transactionId": "txn_123456789",
"engineVersion": "id_liveness@3.4.2",
"result": {
"screenReplay": {
"liveness_score": 99
},
"paperPrinted": {
"liveness_score": 82
},
"replacePortraits": {
"liveness_score": 100
}
}
}The ID Liveness API section allows users to verify the authenticity of an ID document by analyzing the provided image for signs of tampering or forgery. Users can leverage different pipelines to detect screen captures, printed copies, and portrait replacements, ensuring the integrity of the ID document. Upon completion, users will receive recognition results and transaction information, facilitating secure identity verification processes.Documentation Index
Fetch the complete documentation index at: https://developers.argosidentity.com/llms.txt
Use this file to discover all available pages before exploring further.

screenReplay - liveness_scorepaperPrinted - liveness_scorereplacePortraits - liveness_score1001 - Workspace is unavailable1003 - Fail to process data1005 - idImage is required1007 - pipelines is required1008 - invalid pipelines format1009 - Fail to analyze document1010 - callbackUrl is requiredBase64 encoded ID document image to analyze for liveness detection. The image should contain a clear view of the ID document.
Forgery detection options object
Show child attributes
Use the upcoming version of the liveness engine
Optional callback URL where the liveness detection results will be sent upon completion. If provided, the process works asynchronously.
"https://your-domain.com/callback"
Was this page helpful?
curl --request POST \
--url https://idverify-api.argosidentity.com/modules/document \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"idImage": "base64_encoded_id_document_image",
"pipelines": {
"sr": true,
"pc": true,
"ps": true
},
"useUpcomingVersion": true,
"callbackUrl": "https://your-domain.com/callback"
}
'{
"apiType": "id_live_doc",
"transactionId": "txn_123456789",
"engineVersion": "id_liveness@3.4.2",
"result": {
"screenReplay": {
"liveness_score": 99
},
"paperPrinted": {
"liveness_score": 82
},
"replacePortraits": {
"liveness_score": 100
}
}
}