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 →
제출된 이미지를 사용하여 컬렉션 내에서 일치하는 얼굴을 검색
curl --request POST \
--url https://face.argosidentity.com/search \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"collectionId": "col_123456789",
"requestName": "John Doe",
"faceImage": "9j/4AAQSkZJRgABAQAAAQ..."
}
'{
"message": "Search completed successfully",
"result": [
{
"face_id": "<string>",
"user_name": "<string>",
"similarity_score": 123
}
]
}이 API 엔드포인트를 통해 제출된 이미지를 사용하여 컬렉션 내에서 일치하는 얼굴을 검색할 수 있습니다. 이 기능은 얼굴 인식 및 신원 확인 애플리케이션에서 매우 유용합니다.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.
이 페이지가 도움이 되었나요?
curl --request POST \
--url https://face.argosidentity.com/search \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"collectionId": "col_123456789",
"requestName": "John Doe",
"faceImage": "9j/4AAQSkZJRgABAQAAAQ..."
}
'{
"message": "Search completed successfully",
"result": [
{
"face_id": "<string>",
"user_name": "<string>",
"similarity_score": 123
}
]
}