Identity Verification From ID

免费增值
通过 Tu Nguyen | 已更新 2 mesi fa | Visual Recognition
人气

6.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