VerifyMe API
Search
⌃K

Requery Liveness Verification

get
https://vapi.verifyme.ng
/v1/verifications/liveness/:reference
Query liveness verification with reference
Query using the reference returned on a successfull liveness verification

Sample request

CURL
Javascript
curl --verbose
--header "Authorization: Bearer <public key>"
--request "GET" "https://vapi.verifyme.ng/v1/verifications/liveness/:reference
fetch(`https://vapi.verifyme.ng/v1/verifications/liveness/${response.reference}`, {
headers: {
authorization: `Bearer ${pkey}`
}
})
.then((resp) => resp.json())
.then(data => {
console.log('> data', data);
})
.catch(e => console.error)