Identity Verification From ID

फ्रीमियम
द्वारा Tu Nguyen | अपडेट किया गया 2ヶ月前 | Visual Recognition
लोकप्रियता

5.3 / 10

लेटेंसी

6,833ms

सेवा का स्तर

100%

Health Check

N/A

रीडमी

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