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 →
ID 문서의 진위 여부를 확인하기 위해 이미지를 분석하여 변조나 위조 여부를 검증합니다
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
}
}
}ID Liveness API 섹션을 통해 사용자는 제공된 이미지를 분석하여 변조나 위조의 흔적을 찾아 ID 문서의 진위 여부를 확인할 수 있습니다. 사용자는 다양한 파이프라인을 활용하여 화면 캡처, 인쇄된 복사본, 초상화 교체를 감지하여 ID 문서의 무결성을 보장할 수 있습니다. 완료 시 사용자는 인식 결과와 거래 정보를 받게 되어 안전한 신원 확인 프로세스를 원활하게 진행할 수 있습니다.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 unavailable | 워크스페이스를 사용할 수 없습니다1003 - Fail to process data | 데이터 처리에 실패했습니다1005 - idImage is required | idImage가 필요합니다1007 - pipelines is required | pipelines가 필요합니다1008 - invalid pipelines format | 잘못된 pipelines 형식입니다1009 - Fail to analyze document | 문서 분석에 실패했습니다1010 - callbackUrl is required | callbackUrl이 필요합니다Base64 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"
이 페이지가 도움이 되었나요?
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
}
}
}