For the complete documentation index, see llms.txt. This page is also available as Markdown.

Shared Faceset

Comparison of the submitted photo with the photo on shared database of faces Certta.

Section: sharedFaceset

Required files: selfie or document image containing a picture

Attribute
Type
Description

statusCode

String

Response status code

data

Object

Return data

data.suspect

Boolean

General indicator that a similar face was found. This value considers the manual confirmation of the verified field of each face match.

data.faceMatches

Array

Array of images match with the face input

data.faceMatches[X].similarity

String

Level of similarity in the compared images

data.faceMatches[X].verified

Boolean

Indicates that the match was manually confirmed by our operators.

{
  "sharedFaceset": {
    "statusCode": "01",
    "data": {
      "faceMatches": [
        {
          "similarity": "99.99998474121094",
          "verified": true
        }
      ],
      "suspect": true
    }
  }
}
Rule
Description

shared_faceset_not_contains_face

The rule will be invalid if the submitted selfie matches one of the selfies registered in the Shared Face Database.

Last updated