Identity Verification From ID

FREEMIUM
(Ким) Tu Nguyen | Оновлено hace 2 meses | Visual Recognition
Популярність

5.3 / 10

Затримки

6,833ms

Рівень обслуговування

100%

Health Check

N/A

README

Example

Example of how to send data to the API by reading from HTML inputs

const formData = new FormData();
formData.append('fullname', document.getElementById('fullname').value);
formData.append('governmentIdImg', document.getElementById('governmentIdImg').files[0]);
formData.append('selfie', document.getElementById('selfie').files[0]);
    fetch('/verify-identity', {
            method: 'POST',
            body: formData
    })
    .then(response => response.json())
    .then(data => {
        console.log(data);

    })
    .catch(error => {
        console.error(error);
    });

Response Format

The API endpoint returns a JSON response with the following structure:

{
  "success": true,
  "message": "Identity verified!"
}

If the API fails to match the person’s face or full name on the ID card, it will return success being false.

Відстежувачі: 0
Створювач API:
Rapid account: Tu Nguyen
Tu Nguyen
nguyentrungtu1996
Увійти в «Ставки по API»
Рейтинг: 5 - Голосів: 1