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 →
Retrieve a list of all faces contained within a specific collection
curl --request GET \
--url https://face.argosidentity.com/faces \
--header 'x-api-key: <api-key>'{
"message": "Faces retrieved successfully",
"result": [
{
"collection_id": "<string>",
"face_id": "<string>",
"user_name": "<string>",
"create_time": "<string>",
"meta_face_id": "<string>"
}
],
"totalCount": "<string>"
}This API endpoint allows you to retrieve a list of all faces contained within a specific collection. You can use pagination and search functionality to efficiently manage large collections of facial data.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
Page number for pagination. Returns 50 pieces of data per iteration
Retrieves a list of faceIds containing a specific string. (Must be at least 5 characters long)
Was this page helpful?
curl --request GET \
--url https://face.argosidentity.com/faces \
--header 'x-api-key: <api-key>'{
"message": "Faces retrieved successfully",
"result": [
{
"collection_id": "<string>",
"face_id": "<string>",
"user_name": "<string>",
"create_time": "<string>",
"meta_face_id": "<string>"
}
],
"totalCount": "<string>"
}