LogoLogo
Useful links
  • Home
  • Product guides
  • API
  • SDKs
  • Overview
  • CORE API
    • Authentication
    • Available resources
      • Transaction
      • Onboarding
      • Profile
      • Synchronous services
        • OCR Sync
        • Basic Data Sync (Individual)
    • Transaction details
      • Services
        • Document OCR
        • Documentscopy
        • Face Liveness
        • Facematch
        • Facial Biometrics
        • Private Faceset
        • Shared Faceset
        • Document Liveness
      • Background check
        • Data structure
        • KYC
          • Driver
          • Financial
          • Labor
          • Register data
          • Relationships
          • Risk
        • KYB
          • Financial
          • Labor
          • Register data
          • Risk
        • Vehicle
          • Register data
      • Validation rules
      • Manual reprovals
    • Webhooks
      • Transaction
      • Profile
      • Face authentication
  • MOBILE API
    • Authentication
    • Available resources
      • Face liveness (deprecated)
      • Face registration (deprecated)
      • Face authentication (deprecated)
    • Response signature
  • GLOBAL API
    • Authentication
    • Available resources
      • Services
        • Company search
        • Company record
        • Basic Data Sync (Individual)
        • Sanctions
      • Orchestrations
        • Transactions
          • Services
            • KYB
              • Credit Report
              • Business Identity
            • KYC
              • Adverse Media
              • PEPs
              • Sanctions
              • Warnings
              • Global identity verification
              • Global identity double verification
            • DOC ID
              • Global Document Verification
      • Onboardings
        • Links
    • Webhooks
  • SMART AUTH API
    • Authentication
    • Available resources
      • Authentications
      • Create identity
  • Joint resolution 6 API
    • Authentication
    • Available resources
      • Suspected fraud creation
      • Suspected fraud query
      • Suspected fraud update
      • Suspected fraud deletion
    • Using mTLS
    • Changelog
LogoLogo

2025 © Caf. - All rights reserved

On this page
  1. CORE API
  2. Transaction details
  3. Services

Face Liveness

Last updated 2 months ago

Checks if the selfie sent is a spoofing.

Section: liveness

Required files: selfie

Attribute
Type
Description

statusCode

String

Query status ()

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.

details