Identity Verification From ID

부분 유료
분류별 Tu Nguyen | 업데이트됨 2 months ago | 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
Rate API에 로그인
등급: 5 - 투표: 1