Skip to main content
POST
/
api
/
v1
/
verification
/
biometricsfacecompare
Biometrics Face Match
curl --request POST \
  --url https://{environment-subdomain}.idmetagroup.com/api/v1/verification/biometricsfacecompare \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "image1": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD...",
  "image2": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD...",
  "template_id": "{your_trust_flow_id}",
  "verification_id": "{your_created_verification_id}"
}
'
{
  "status": true,
  "message": "OK",
  "result": {
    "message": "success",
    "score": 99,
    "status": "success"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.idmetagroup.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use Bearer {your_api_token} in the Authorization header.

Headers

Accept
string
default:application/json
Content-Type
string
default:application/json

Body

application/json
image1
string
required

Image for biometric face match.

image2
string
required

Second image for biometric face match.

template_id
string
required

Identifier used to categorize or group requests for tracking or reporting.

verification_id
string
required

Unique identifier for the verification request, used for traceability.

Response

200 - application/json

Face match completed successfully

status
boolean
message
string
result
object