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

Face Liveness

Checks if the selfie sent is a spoofing.

Section: liveness

Required files: selfie

Attribute
Type
Description

statusCode

String

Query status (details)

data

Object

Return data

data.message

String

Query message

data.status

String

Query status in the service. Possible values: APPROVED or REPROVED

data.isAlive

Boolean

Liveness response

data.info.probability

Number

Probability of the result liveness is correct

data.info.openEyesProbability

Number

Probability of the eyes is open

{
  "liveness": {
    "statusCode": "01",
    "data": {
      "message": "Consulta realizada com sucesso",
      "status": "APPROVED",
      "isAlive": true,
      "info": {
        "probability": 0.9999899864196777,
        "openEyesProbability": 0.9989315271377563
      }
    }
  }
}
Rule
Description

liveness_approved

Check that the liveness has been approved.

liveness_double_check

This rule sends the selfie for manual anti-spoofing verification.

liveness_manual_revision

This rule sends the selfie for manual anti-spoofing verification.

Last updated