Face Recognition

Fetch user with their face

Good to know: Only users that have been registered as part of your group would be queried during this request. The user with the highest comparable features as the image provided would be returned along with the similarity percentage.

Search for similar faces

POST https://api.usetani.com/api/v0/persons/authenticate

Creates a new person.

Headers

Name
Type
Description

x-api-key*

string

Your API key

x-group-id*

string

Your group ID from the dashboard.

Request Body

Name
Type
Description

image*

string

Image that needs to be recognized.

{
    "message":"We found a match for the uploaded image",
    "potential_match": {
        "person_id": "string",
        "person_name": "string",
        "client_id": "string",
    },
    "similarity_score": 0.7556397799150376,
}

Last updated