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 →
Search for matching faces within a collection using a submitted image
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
}
]
}This API endpoint allows you to search for matching faces within a collection using a submitted facial image. The system will compare the submitted image against all faces in the specified collection and return matching results.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.
Unique identifier of the collection to search in
"col_123456789"
Name that matches the face image
"John Doe"
Base64-encoded string representation of the face image to search for
"9j/4AAQSkZJRgABAQAAAQ..."
Was this page helpful?
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
}
]
}