LogoAI ForensiX

Face Verification (1:1 Matching)

Verifies whether two face images belong to the same person using AI-ForensiX FaceID engine.

The Face Verification API performs 1:1 face matching, determining whether two face images represent the same individual.
This service is useful for identity verification, authentication workflows, and security validation.


Endpoint

POST /v1/faceid/verify-faces

Request Body

FieldTypeRequiredDescription
source_imagebinaryYesFirst face image for comparison
target_imagebinaryYesSecond face image to match

Example Request (cURL)

curl -X POST "https://forensiz.ai/" \
  -H "x-api-key: YOUR_API_KEY" \
  -F source_image=@face1.png \
  -F target_image=@face2.png

Response Status Codes

Status CodeMeaning
200 OKFaces processed and comparison returned successfully.
400 Bad RequestMissing parameters or invalid image input.
401 UnauthorizedInvalid or missing API key.
403 ForbiddenThis service is not enabled for your API key.
404 Not FoundEndpoint not found.
500 Internal Server ErrorUnexpected server-side error.

On this page