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 →
Busque rostros coincidentes dentro de una colección usando una imagen enviada
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
}
]
}Este endpoint de API le permite buscar rostros coincidentes dentro de una colección usando una imagen facial enviada. El sistema comparará la imagen enviada contra todos los rostros en la colección especificada y devolverá los resultados coincidentes.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..."
¿Esta página le ayudó?
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
}
]
}