Search Crops

Search Crops

1:N search using face crops (small regions). min_score must be between 0.5 and 1.

menu_bookAPI reference: Face Search 1:N (Crops)expand_more

Official docs: docs.verifik.co/biometrics/search-crops (1:N search for face crops; min_score is 0.5–1, unlike standard Face Search).

Base URL https://api.verifik.co. Send one or more entries in images as raw base64 or HTTPS URLs to images (the API may fetch URLs server-side). Optionally set collection_id and max_results.

POST /v2/face-recognition/search/crops

Returns ranked candidate persons in data, same general shape as /face-recognition/search.

HeaderValue
Content-Typeapplication/json
AuthorizationBearer <token>
ParamReqDescription
imagesYesFace crops (base64 and/or HTTPS URLs), same subject
min_scoreYes0.5–1
search_modeYesFAST or ACCURATE
collection_idNoLimit search to one collection
max_resultsNoCap on returned matches
await searchCrops(
  {
    images: ["<base64>", "<base64>"],
    min_score: 0.75,
    search_mode: "FAST",
    collection_id: "<optionalCollectionMongoId>",
    max_results: 10,
  },
  accessToken,
);
  • This demo uses searchCrops from @humanauthn/api-client with your session token.
  • Responses typically include ranked matches and may include a signature block depending on environment.
menu_book

Official guides on docs.verifik.co