LogoAI ForensiX

Face Search – Search

Searches an input face image against all enrolled identities in the AI-ForensiX face search index.

The Face Search API compares an input face image against all previously enrolled face embeddings in the search index.
It returns the most similar matches with similarity scores, enabling quick identification or recognition workflows.


Endpoint

POST /v1/facesearch/search

Request Body

FieldTypeRequiredDescription
filebinaryYesFace image to search in the index.

Example Request (cURL)

curl -X POST "https://forensiz.ai/search" \
  -H "x-api-key: YOUR_API_KEY" \
  -F file=@"/path/face.jpg"

Response Status Codes

Status CodeMeaning
200 OKSearch completed successfully.
400 Bad RequestInvalid request or missing file.
401 UnauthorizedInvalid or missing API key.
403 ForbiddenService access not permitted.
404 Not FoundEndpoint does not exist.
415 Unsupported Media TypeUnsupported file format.
500 Internal Server ErrorUnexpected server error.

On this page