curl --request POST \
--url https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/document-verification-passthrough \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"imageFrontSide": "data:image/jpeg;base64,/9j/4AAQSkZJRg..."
}
'import requests
url = "https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/document-verification-passthrough"
payload = { "imageFrontSide": "data:image/jpeg;base64,/9j/4AAQSkZJRg..." }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({imageFrontSide: 'data:image/jpeg;base64,/9j/4AAQSkZJRg...'})
};
fetch('https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/document-verification-passthrough', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/document-verification-passthrough",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'imageFrontSide' => 'data:image/jpeg;base64,/9j/4AAQSkZJRg...'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/document-verification-passthrough"
payload := strings.NewReader("{\n \"imageFrontSide\": \"data:image/jpeg;base64,/9j/4AAQSkZJRg...\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/document-verification-passthrough")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"imageFrontSide\": \"data:image/jpeg;base64,/9j/4AAQSkZJRg...\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/document-verification-passthrough")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"imageFrontSide\": \"data:image/jpeg;base64,/9j/4AAQSkZJRg...\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"message": "Document verification processed successfully",
"data": {
"response": {
"processingStatus": "Completed",
"verification": {
"recommendedOutcome": "Accept",
"result": "Pass",
"certaintyLevel": "High",
"performedChecks": 14,
"type": "DetailedCheck"
},
"messages": [],
"checks": [
{
"name": "ExtractedDataCheck",
"result": "Pass",
"certaintyLevel": "High",
"type": "DetailedCheck",
"checks": [
{
"name": "MatchCheck",
"result": "NotPerformed",
"matchLevel": "Unknown",
"type": "TieredCheck",
"checks": [
{
"field": "FirstName",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "LastName",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "FullName",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "Address",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "PlaceOfBirth",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "Race",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "Religion",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "Profession",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "MaritalStatus",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "ResidentialStatus",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "Employer",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "Sex",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "DateOfBirth",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "DateOfIssue",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "DateOfExpiry",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "DocumentNumber",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "PersonalIdNumber",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "DocumentAdditionalNumber",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "DocumentOptionalAdditionalNumber",
"result": "NotPerformed",
"type": "FieldCheck"
}
]
},
{
"name": "LogicCheck",
"result": "Pass",
"type": "Check",
"checks": [
{
"name": "DateLogicCheck",
"result": "Pass",
"type": "Check",
"checks": [
{
"name": "DateOfBirthBeforeDateOfIssueCheck",
"result": "NotPerformed",
"type": "Check"
},
{
"name": "DateOfBirthBeforeDateOfExpiryCheck",
"result": "Pass",
"type": "Check"
},
{
"name": "DateOfIssueBeforeDateOfExpiryCheck",
"result": "NotPerformed",
"type": "Check"
},
{
"name": "DateOfBirthInPastCheck",
"result": "Pass",
"type": "Check"
},
{
"name": "DateOfIssueInPastCheck",
"result": "NotPerformed",
"type": "Check"
}
]
},
{
"name": "DocumentNumberLogic",
"result": "NotPerformed",
"type": "Check"
},
{
"name": "PersonalIdNumberLogic",
"result": "NotPerformed",
"type": "Check"
},
{
"name": "InventoryControlNumberLogic",
"result": "NotPerformed",
"type": "Check"
},
{
"name": "DocumentDiscriminatorLogic",
"result": "NotPerformed",
"type": "Check"
},
{
"name": "CustomerIdNumberLogic",
"result": "NotPerformed",
"type": "Check"
}
]
},
{
"name": "FieldFormatCheck",
"result": "Pass",
"type": "Check",
"checks": [
{
"field": "DateOfBirth",
"result": "Pass",
"type": "FieldCheck"
},
{
"field": "DateOfExpiry",
"result": "Pass",
"type": "FieldCheck"
},
{
"field": "DateOfIssue",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "DocumentNumber",
"result": "Pass",
"type": "FieldCheck"
},
{
"field": "DocumentAdditionalNumber",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "DocumentOptionalAdditionalNumber",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "PersonalIdNumber",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "AdditionalPersonalIdNumber",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "Sex",
"result": "Pass",
"type": "FieldCheck"
},
{
"field": "Nationality",
"result": "Pass",
"type": "FieldCheck"
},
{
"field": "IssuingAuthority",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "MaritalStatus",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "Religion",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "ClassEffectiveDate",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "ClassExpiryDate",
"result": "NotPerformed",
"type": "FieldCheck"
}
]
},
{
"name": "BarcodeAuthenticity",
"result": "NotPerformed",
"matchLevel": "Unknown",
"type": "TieredCheck",
"checks": [
{
"name": "ContentCheck",
"result": "NotPerformed",
"type": "Check"
},
{
"name": "ReadCheck",
"result": "NotPerformed",
"type": "Check"
}
]
},
{
"name": "SuspiciousDataCheck",
"result": "Pass",
"certaintyLevel": "High",
"type": "DetailedCheck",
"checks": [
{
"name": "SuspiciousNumberCheck",
"result": "Pass",
"certaintyLevel": "High",
"type": "DetailedCheck"
},
{
"name": "SampleStringCheck",
"result": "Pass",
"certaintyLevel": "High",
"type": "DetailedCheck"
}
]
},
{
"name": "DataIntegrityCheck",
"result": "Pass",
"type": "Check"
},
{
"name": "MRZCheck",
"result": "NotPerformed",
"type": "Check",
"checks": [
{
"name": "Parsed",
"result": "NotPerformed",
"type": "Check"
},
{
"name": "CheckDigits",
"result": "NotPerformed",
"type": "Check"
}
]
}
]
},
{
"name": "DocumentLivenessCheck",
"result": "Pass",
"type": "Check",
"checks": [
{
"name": "ScreenCheck",
"result": "Pass",
"matchLevel": "Level10",
"type": "TieredCheck"
},
{
"name": "PhotocopyCheck",
"result": "Pass",
"matchLevel": "Level10",
"type": "TieredCheck"
}
]
},
{
"name": "VisualCheck",
"result": "Pass",
"type": "Check",
"checks": [
{
"name": "PhotoForgeryCheck",
"result": "Pass",
"matchLevel": "Level10",
"type": "TieredCheck"
},
{
"name": "SecurityFeatures",
"result": "NotPerformed",
"matchLevel": "Unknown",
"type": "TieredCheck",
"details": []
},
{
"name": "GenerativeAiCheck",
"result": "NotPerformed",
"matchLevel": "Unknown",
"type": "TieredCheck"
}
]
},
{
"name": "DocumentValidityCheck",
"result": "Pass",
"type": "Check",
"checks": [
{
"name": "VersionCheck",
"result": "Pass",
"type": "Check"
},
{
"name": "ExpiredCheck",
"result": "Pass",
"type": "Check"
}
]
}
],
"processIndicators": [
{
"name": "Clarity",
"type": "ImageQuality",
"result": "Pass"
},
{
"name": "HandPresence",
"type": "ScanProcess",
"result": "Fail"
},
{
"name": "Cropped",
"type": "ImageQuality",
"result": "Pass"
}
],
"extraction": {
"processingStatus": "Success",
"recognitionStatus": "Valid",
"overall": [
{
"side": "Unknown",
"script": "Latin",
"value": "EXAMPLE PERSON",
"type": "DetailedStringResult",
"field": "FullName"
},
{
"side": "Unknown",
"script": "Latin",
"value": "123 EXAMPLE STREET, KUALA LUMPUR",
"type": "DetailedStringResult",
"field": "Address"
},
{
"originalResult": [
{
"side": "Unknown",
"script": "Latin",
"value": "1990/01/15",
"type": "DetailedStringResult"
}
],
"day": 15,
"month": 1,
"year": 1990,
"successfullyParsed": true,
"filledByDomainKnowledge": false,
"type": "DetailedDateResult",
"field": "DateOfBirth"
},
{
"originalResult": [
{
"side": "Unknown",
"script": "Latin",
"value": "2030/01/15",
"type": "DetailedStringResult"
}
],
"day": 15,
"month": 1,
"year": 2030,
"successfullyParsed": true,
"filledByDomainKnowledge": false,
"type": "DetailedDateResult",
"field": "DateOfExpiry"
},
{
"side": "Unknown",
"script": "Latin",
"value": "DL-EXAMPLE-001",
"type": "DetailedStringResult",
"field": "DocumentNumber"
},
{
"side": "Unknown",
"script": "Latin",
"value": "M",
"type": "DetailedStringResult",
"field": "Sex"
},
{
"side": "Unknown",
"script": "Latin",
"value": "MYS",
"type": "DetailedStringResult",
"field": "Nationality"
},
{
"type": "Result",
"field": "DriverLicenseDetailedInfo",
"results": [
{
"side": "Unknown",
"script": "Latin",
"value": "NONE",
"type": "DetailedStringResult",
"field": "Conditions"
},
{
"side": "Unknown",
"script": "Latin",
"value": "D",
"type": "DetailedStringResult",
"field": "Class"
}
]
}
],
"viz": {
"front": [
{
"side": "Front",
"script": "Latin",
"value": "EXAMPLE PERSON",
"type": "DetailedStringResult",
"field": "FullName"
},
{
"side": "Front",
"script": "Latin",
"value": "123 EXAMPLE STREET, KUALA LUMPUR",
"type": "DetailedStringResult",
"field": "Address"
},
{
"side": "Front",
"script": "Latin",
"value": "DL-EXAMPLE-001",
"type": "DetailedStringResult",
"field": "DocumentNumber"
}
],
"back": []
},
"classInfo": {
"country": "Malaysia",
"type": "Dl",
"region": "None",
"isoAlpha3CountryCode": "MYS",
"isoAlpha2CountryCode": "MY",
"isoNumericCountryCode": "458"
},
"additionalInfo": {
"frontProcessingStatus": "Success",
"backProcessingStatus": "NotScanned",
"recognitionMode": "FullRecognition",
"firstSideAdditionalProcessingInfo": {
"missingMandatoryFields": [],
"invalidCharacterFields": [],
"extraPresentFields": []
},
"secondSideAdditionalProcessingInfo": {
"missingMandatoryFields": [],
"invalidCharacterFields": [],
"extraPresentFields": []
}
}
},
"runtime": {
"startedOn": "2026-09-09T00:18:54.0326167Z",
"finishedOn": "2026-09-09T00:18:55.8487633Z",
"elapsedMs": 1816,
"serviceVersion": "4000.1.1",
"runnerVersion": "unknown",
"runnerInstanceKey": "unknown",
"runnerInstanceIndex": 0,
"wrapperVersion": "4000.1.1",
"extractionRecognizerVersion": "v8001.0.0",
"verificationRecognizerVersion": "v4000.1.1",
"blinkIdRecognizerVersion": "25.0.2",
"blinkIdVerifyRecognizerVersion": "19.2.0",
"dockerImageTag": "4000.1.1",
"clientSdkName": "",
"clientSdkVersion": "",
"recognitionPath": "front: Path1",
"traceId": "00-a66f051b403d552cdf1ebeeacf098286-6b22178c67c928cf-01"
},
"images": [
{
"name": "FullDocumentFrontImage",
"base64": "{{base64_image}}"
},
{
"name": "FaceImage",
"base64": "{{base64_image}}"
}
],
"optionsUsed": {
"screenMatchLevel": "Level5",
"photocopyMatchLevel": "Level3",
"barcodeAnomalyMatchLevel": "Level3",
"photoForgeryMatchLevel": "Level3",
"staticSecurityFeaturesMatchLevel": "Disabled",
"dataMatchMatchLevel": "Level5",
"generativeAiMatchLevel": "Disabled",
"blurMatchLevel": "Level3",
"glareMatchLevel": "Level2",
"lightingMatchLevel": "Disabled",
"sharpnessMatchLevel": "Level2",
"handOcclusionMatchLevel": "Level2",
"dpiMatchLevel": "Disabled",
"tiltMatchLevel": "Disabled",
"imageQualityInterpretation": "Conservative",
"sideMode": "FrontOnly",
"treatExpirationAsFraud": true
},
"useCaseUsed": {
"documentVerificationPolicy": "Standard",
"verificationContext": "Remote",
"manualReviewStrategy": "Never",
"manualReviewSensitivity": "Low",
"captureConditions": "NoControl"
},
"documentTypeFilter": {
"filteredCountry": "MY",
"filteredDocumentTypes": [
"malaysia_driver_license"
],
"filteredGenericDocumentTypes": [],
"detectedCountry": "Malaysia",
"detectedDocumentType": "Dl",
"documentTypeMatchesFilter": true
}
}
},
"verificationStatus": "VERIFIED",
"verificationStatusCode": 3,
"transactionId": "e3817239-582f-4654-9884-f72d5522951d",
"verificationType": "document_verification",
"metadata": {
"customerRef": "ACME-8891"
},
"createdAt": "2026-09-09 00:18:53+0000"
}Document verification
Verify a supported identity document and return authenticity checks, extracted fields, and document images.
curl --request POST \
--url https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/document-verification-passthrough \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"imageFrontSide": "data:image/jpeg;base64,/9j/4AAQSkZJRg..."
}
'import requests
url = "https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/document-verification-passthrough"
payload = { "imageFrontSide": "data:image/jpeg;base64,/9j/4AAQSkZJRg..." }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({imageFrontSide: 'data:image/jpeg;base64,/9j/4AAQSkZJRg...'})
};
fetch('https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/document-verification-passthrough', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/document-verification-passthrough",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'imageFrontSide' => 'data:image/jpeg;base64,/9j/4AAQSkZJRg...'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/document-verification-passthrough"
payload := strings.NewReader("{\n \"imageFrontSide\": \"data:image/jpeg;base64,/9j/4AAQSkZJRg...\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/document-verification-passthrough")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"imageFrontSide\": \"data:image/jpeg;base64,/9j/4AAQSkZJRg...\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{environment-subdomain}.idmetagroup.com/api/v3/verifications/document-verification-passthrough")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"imageFrontSide\": \"data:image/jpeg;base64,/9j/4AAQSkZJRg...\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"message": "Document verification processed successfully",
"data": {
"response": {
"processingStatus": "Completed",
"verification": {
"recommendedOutcome": "Accept",
"result": "Pass",
"certaintyLevel": "High",
"performedChecks": 14,
"type": "DetailedCheck"
},
"messages": [],
"checks": [
{
"name": "ExtractedDataCheck",
"result": "Pass",
"certaintyLevel": "High",
"type": "DetailedCheck",
"checks": [
{
"name": "MatchCheck",
"result": "NotPerformed",
"matchLevel": "Unknown",
"type": "TieredCheck",
"checks": [
{
"field": "FirstName",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "LastName",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "FullName",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "Address",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "PlaceOfBirth",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "Race",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "Religion",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "Profession",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "MaritalStatus",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "ResidentialStatus",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "Employer",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "Sex",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "DateOfBirth",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "DateOfIssue",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "DateOfExpiry",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "DocumentNumber",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "PersonalIdNumber",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "DocumentAdditionalNumber",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "DocumentOptionalAdditionalNumber",
"result": "NotPerformed",
"type": "FieldCheck"
}
]
},
{
"name": "LogicCheck",
"result": "Pass",
"type": "Check",
"checks": [
{
"name": "DateLogicCheck",
"result": "Pass",
"type": "Check",
"checks": [
{
"name": "DateOfBirthBeforeDateOfIssueCheck",
"result": "NotPerformed",
"type": "Check"
},
{
"name": "DateOfBirthBeforeDateOfExpiryCheck",
"result": "Pass",
"type": "Check"
},
{
"name": "DateOfIssueBeforeDateOfExpiryCheck",
"result": "NotPerformed",
"type": "Check"
},
{
"name": "DateOfBirthInPastCheck",
"result": "Pass",
"type": "Check"
},
{
"name": "DateOfIssueInPastCheck",
"result": "NotPerformed",
"type": "Check"
}
]
},
{
"name": "DocumentNumberLogic",
"result": "NotPerformed",
"type": "Check"
},
{
"name": "PersonalIdNumberLogic",
"result": "NotPerformed",
"type": "Check"
},
{
"name": "InventoryControlNumberLogic",
"result": "NotPerformed",
"type": "Check"
},
{
"name": "DocumentDiscriminatorLogic",
"result": "NotPerformed",
"type": "Check"
},
{
"name": "CustomerIdNumberLogic",
"result": "NotPerformed",
"type": "Check"
}
]
},
{
"name": "FieldFormatCheck",
"result": "Pass",
"type": "Check",
"checks": [
{
"field": "DateOfBirth",
"result": "Pass",
"type": "FieldCheck"
},
{
"field": "DateOfExpiry",
"result": "Pass",
"type": "FieldCheck"
},
{
"field": "DateOfIssue",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "DocumentNumber",
"result": "Pass",
"type": "FieldCheck"
},
{
"field": "DocumentAdditionalNumber",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "DocumentOptionalAdditionalNumber",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "PersonalIdNumber",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "AdditionalPersonalIdNumber",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "Sex",
"result": "Pass",
"type": "FieldCheck"
},
{
"field": "Nationality",
"result": "Pass",
"type": "FieldCheck"
},
{
"field": "IssuingAuthority",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "MaritalStatus",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "Religion",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "ClassEffectiveDate",
"result": "NotPerformed",
"type": "FieldCheck"
},
{
"field": "ClassExpiryDate",
"result": "NotPerformed",
"type": "FieldCheck"
}
]
},
{
"name": "BarcodeAuthenticity",
"result": "NotPerformed",
"matchLevel": "Unknown",
"type": "TieredCheck",
"checks": [
{
"name": "ContentCheck",
"result": "NotPerformed",
"type": "Check"
},
{
"name": "ReadCheck",
"result": "NotPerformed",
"type": "Check"
}
]
},
{
"name": "SuspiciousDataCheck",
"result": "Pass",
"certaintyLevel": "High",
"type": "DetailedCheck",
"checks": [
{
"name": "SuspiciousNumberCheck",
"result": "Pass",
"certaintyLevel": "High",
"type": "DetailedCheck"
},
{
"name": "SampleStringCheck",
"result": "Pass",
"certaintyLevel": "High",
"type": "DetailedCheck"
}
]
},
{
"name": "DataIntegrityCheck",
"result": "Pass",
"type": "Check"
},
{
"name": "MRZCheck",
"result": "NotPerformed",
"type": "Check",
"checks": [
{
"name": "Parsed",
"result": "NotPerformed",
"type": "Check"
},
{
"name": "CheckDigits",
"result": "NotPerformed",
"type": "Check"
}
]
}
]
},
{
"name": "DocumentLivenessCheck",
"result": "Pass",
"type": "Check",
"checks": [
{
"name": "ScreenCheck",
"result": "Pass",
"matchLevel": "Level10",
"type": "TieredCheck"
},
{
"name": "PhotocopyCheck",
"result": "Pass",
"matchLevel": "Level10",
"type": "TieredCheck"
}
]
},
{
"name": "VisualCheck",
"result": "Pass",
"type": "Check",
"checks": [
{
"name": "PhotoForgeryCheck",
"result": "Pass",
"matchLevel": "Level10",
"type": "TieredCheck"
},
{
"name": "SecurityFeatures",
"result": "NotPerformed",
"matchLevel": "Unknown",
"type": "TieredCheck",
"details": []
},
{
"name": "GenerativeAiCheck",
"result": "NotPerformed",
"matchLevel": "Unknown",
"type": "TieredCheck"
}
]
},
{
"name": "DocumentValidityCheck",
"result": "Pass",
"type": "Check",
"checks": [
{
"name": "VersionCheck",
"result": "Pass",
"type": "Check"
},
{
"name": "ExpiredCheck",
"result": "Pass",
"type": "Check"
}
]
}
],
"processIndicators": [
{
"name": "Clarity",
"type": "ImageQuality",
"result": "Pass"
},
{
"name": "HandPresence",
"type": "ScanProcess",
"result": "Fail"
},
{
"name": "Cropped",
"type": "ImageQuality",
"result": "Pass"
}
],
"extraction": {
"processingStatus": "Success",
"recognitionStatus": "Valid",
"overall": [
{
"side": "Unknown",
"script": "Latin",
"value": "EXAMPLE PERSON",
"type": "DetailedStringResult",
"field": "FullName"
},
{
"side": "Unknown",
"script": "Latin",
"value": "123 EXAMPLE STREET, KUALA LUMPUR",
"type": "DetailedStringResult",
"field": "Address"
},
{
"originalResult": [
{
"side": "Unknown",
"script": "Latin",
"value": "1990/01/15",
"type": "DetailedStringResult"
}
],
"day": 15,
"month": 1,
"year": 1990,
"successfullyParsed": true,
"filledByDomainKnowledge": false,
"type": "DetailedDateResult",
"field": "DateOfBirth"
},
{
"originalResult": [
{
"side": "Unknown",
"script": "Latin",
"value": "2030/01/15",
"type": "DetailedStringResult"
}
],
"day": 15,
"month": 1,
"year": 2030,
"successfullyParsed": true,
"filledByDomainKnowledge": false,
"type": "DetailedDateResult",
"field": "DateOfExpiry"
},
{
"side": "Unknown",
"script": "Latin",
"value": "DL-EXAMPLE-001",
"type": "DetailedStringResult",
"field": "DocumentNumber"
},
{
"side": "Unknown",
"script": "Latin",
"value": "M",
"type": "DetailedStringResult",
"field": "Sex"
},
{
"side": "Unknown",
"script": "Latin",
"value": "MYS",
"type": "DetailedStringResult",
"field": "Nationality"
},
{
"type": "Result",
"field": "DriverLicenseDetailedInfo",
"results": [
{
"side": "Unknown",
"script": "Latin",
"value": "NONE",
"type": "DetailedStringResult",
"field": "Conditions"
},
{
"side": "Unknown",
"script": "Latin",
"value": "D",
"type": "DetailedStringResult",
"field": "Class"
}
]
}
],
"viz": {
"front": [
{
"side": "Front",
"script": "Latin",
"value": "EXAMPLE PERSON",
"type": "DetailedStringResult",
"field": "FullName"
},
{
"side": "Front",
"script": "Latin",
"value": "123 EXAMPLE STREET, KUALA LUMPUR",
"type": "DetailedStringResult",
"field": "Address"
},
{
"side": "Front",
"script": "Latin",
"value": "DL-EXAMPLE-001",
"type": "DetailedStringResult",
"field": "DocumentNumber"
}
],
"back": []
},
"classInfo": {
"country": "Malaysia",
"type": "Dl",
"region": "None",
"isoAlpha3CountryCode": "MYS",
"isoAlpha2CountryCode": "MY",
"isoNumericCountryCode": "458"
},
"additionalInfo": {
"frontProcessingStatus": "Success",
"backProcessingStatus": "NotScanned",
"recognitionMode": "FullRecognition",
"firstSideAdditionalProcessingInfo": {
"missingMandatoryFields": [],
"invalidCharacterFields": [],
"extraPresentFields": []
},
"secondSideAdditionalProcessingInfo": {
"missingMandatoryFields": [],
"invalidCharacterFields": [],
"extraPresentFields": []
}
}
},
"runtime": {
"startedOn": "2026-09-09T00:18:54.0326167Z",
"finishedOn": "2026-09-09T00:18:55.8487633Z",
"elapsedMs": 1816,
"serviceVersion": "4000.1.1",
"runnerVersion": "unknown",
"runnerInstanceKey": "unknown",
"runnerInstanceIndex": 0,
"wrapperVersion": "4000.1.1",
"extractionRecognizerVersion": "v8001.0.0",
"verificationRecognizerVersion": "v4000.1.1",
"blinkIdRecognizerVersion": "25.0.2",
"blinkIdVerifyRecognizerVersion": "19.2.0",
"dockerImageTag": "4000.1.1",
"clientSdkName": "",
"clientSdkVersion": "",
"recognitionPath": "front: Path1",
"traceId": "00-a66f051b403d552cdf1ebeeacf098286-6b22178c67c928cf-01"
},
"images": [
{
"name": "FullDocumentFrontImage",
"base64": "{{base64_image}}"
},
{
"name": "FaceImage",
"base64": "{{base64_image}}"
}
],
"optionsUsed": {
"screenMatchLevel": "Level5",
"photocopyMatchLevel": "Level3",
"barcodeAnomalyMatchLevel": "Level3",
"photoForgeryMatchLevel": "Level3",
"staticSecurityFeaturesMatchLevel": "Disabled",
"dataMatchMatchLevel": "Level5",
"generativeAiMatchLevel": "Disabled",
"blurMatchLevel": "Level3",
"glareMatchLevel": "Level2",
"lightingMatchLevel": "Disabled",
"sharpnessMatchLevel": "Level2",
"handOcclusionMatchLevel": "Level2",
"dpiMatchLevel": "Disabled",
"tiltMatchLevel": "Disabled",
"imageQualityInterpretation": "Conservative",
"sideMode": "FrontOnly",
"treatExpirationAsFraud": true
},
"useCaseUsed": {
"documentVerificationPolicy": "Standard",
"verificationContext": "Remote",
"manualReviewStrategy": "Never",
"manualReviewSensitivity": "Low",
"captureConditions": "NoControl"
},
"documentTypeFilter": {
"filteredCountry": "MY",
"filteredDocumentTypes": [
"malaysia_driver_license"
],
"filteredGenericDocumentTypes": [],
"detectedCountry": "Malaysia",
"detectedDocumentType": "Dl",
"documentTypeMatchesFilter": true
}
}
},
"verificationStatus": "VERIFIED",
"verificationStatusCode": 3,
"transactionId": "e3817239-582f-4654-9884-f72d5522951d",
"verificationType": "document_verification",
"metadata": {
"customerRef": "ACME-8891"
},
"createdAt": "2026-09-09 00:18:53+0000"
}returnFullResolutionImage is true, the images array also includes the full document image.
Verification configuration
returnFullResolutionImage
Controls whether the response includes the original full-resolution document image.
| Value | Behaviour |
|---|---|
true | Returns the full-resolution image for storage, auditing, manual review, or fraud investigation. |
false | Returns the verification results and extracted document data without the full-resolution image. |
screenMatchLevel
Determines how strictly the service checks for screen replay attacks. Higher levels detect digital displays more aggressively but may reject valid physical documents.
Select LEVEL_1 through LEVEL_10. LEVEL_1 is the least strict and LEVEL_10 is the most strict.
photoForgeryMatchLevel
Controls how strictly the service checks for photo forgery, including photo replacement, face swapping, and digital editing. Higher levels apply stricter checks but may reject more genuine documents.
Select LEVEL_1 through LEVEL_10. LEVEL_1 is the least strict and LEVEL_10 is the most strict.
staticSecurityFeaturesMatchLevel
Controls how strictly the service verifies visible security features such as background patterns, microprinting, fine-line artwork, and document-design consistency. Higher levels provide stricter fraud detection but may increase false rejections.
Select LEVEL_1 through LEVEL_10. LEVEL_1 is the least strict and LEVEL_10 is the most strict. Set this field to Disabled to skip the check.
documentTypeFilter
Restricts verification to the specified issuing country and document types. Set country to an ISO 3166-1 alpha-3 country code and list one or more supported values in cardType.
The following filter accepts only Malaysian driver’s licences:
{
"documentTypeFilter": {
"country": "MYS",
"cardType": [
"malaysia_driver_license"
]
}
}
Supported document types
- Philippines
- Malaysia
- Indonesia
- Australia
PHL as the country value.cardType value | Document |
|---|---|
philippines_driving_license | LTO Driver License |
philippines_prc | PRC ID |
philippines_social_security | SSS ID |
philippines_umid_ssn | UMID ID |
philippines_health_insurance_card | Health Insurance Card |
philippines_tax_id | Tax ID |
philippines_passport | Passport |
philippines_philsys_id | PhilSys ID |
philippines_voter_id | Voter ID |
philippines_postal_id | Postal ID |
philippines_alien_id | Alien ID (ACR I-Card) |
MYS as the country value.cardType value | Document |
|---|---|
malaysia_ic_check | MyKad |
malaysia_driver_license | Driver’s License |
malaysia_i_kad | i-Kad |
malaysia_mykas | MyKAS |
malaysia_mykid | MyKid |
malaysia_mypolis | MyPolis |
malaysia_mypr | MyPR |
malaysia_mytentera | MyTentera |
malaysia_refugee_id | Refugee ID |
malaysia_passport | Polycarbonate Passport |
IDN as the country value.cardType value | Document |
|---|---|
ktp_details_extraction | Indonesian ID (KTP) |
indonesia_driver_license | Driver’s License |
indonesia_passport | Passport |
AUS as the country value.cardType value | Document |
|---|---|
australia_driver_license | Driver License |
australia_passport | Passport |
australia_identity_card | Identity Card |
australia_health_insurance_card | Health Insurance Card |
country and one of the values in cardType. Check data.response.documentTypeFilter.documentTypeMatchesFilter in the response to confirm the match.Example configuration
This configuration verifies Malaysian driver’s licences, applies level 5 screen detection and level 3 photo-forgery detection, skips static-security-feature validation, and returns the full-resolution image.{
"returnFullResolutionImage": true,
"screenMatchLevel": "LEVEL_5",
"photoForgeryMatchLevel": "LEVEL_3",
"staticSecurityFeaturesMatchLevel": "Disabled",
"documentTypeFilter": {
"country": "MYS",
"cardType": [
"malaysia_driver_license"
]
}
}
Interpret the response
success: true means the API processed the request. Use verificationStatus, data.response.verification.recommendedOutcome, and data.response.verification.result to determine the verification outcome.
| Field | Meaning |
|---|---|
data.response.checks | Nested authenticity, liveness, validity, and extracted-data checks. |
data.response.processIndicators | Capture-quality and scan-process signals such as clarity, cropping, and hand presence. |
data.response.extraction | Extracted fields, side-specific results, and detected document classification. |
data.response.images | Returned document and portrait images. Availability depends on the request settings and detected document. |
data.response.optionsUsed | Effective verification settings applied by the service. |
data.response.documentTypeFilter | Configured filters, detected type, and whether the detected document matched the filter. |
data.response.runtime | Processing duration, component versions, recognition path, and trace ID. |
NotPerformed means that a check was disabled, unsupported, or not applicable to the submitted document. It does not by itself mean the document failed verification.Authorizations
Use your API token as a Bearer token in the Authorization header.
Headers
"Bearer {your_api_token}"
Body
Front document image as a JPEG or PNG data URL containing base64-encoded image data.
"data:image/jpeg;base64,/9j/4AAQSkZJRg..."
Back document image as a JPEG or PNG data URL. Include this field for a two-sided document.
"data:image/jpeg;base64,/9j/4AAQSkZJRg..."
Your reference data. The API returns this object unchanged in the response.
{ "customerRef": "ACME-8891" }
Whether to return the full-resolution document image in data.response.images.
true
Controls how strictly the service checks for screen replay attacks. LEVEL_1 is the least strict and LEVEL_10 is the most strict. Higher levels may reject more valid physical documents.
LEVEL_1, LEVEL_2, LEVEL_3, LEVEL_4, LEVEL_5, LEVEL_6, LEVEL_7, LEVEL_8, LEVEL_9, LEVEL_10 "LEVEL_5"
Controls how strictly the service checks for photo forgery. LEVEL_1 is the least strict and LEVEL_10 is the most strict. Higher levels may reject more genuine documents.
LEVEL_1, LEVEL_2, LEVEL_3, LEVEL_4, LEVEL_5, LEVEL_6, LEVEL_7, LEVEL_8, LEVEL_9, LEVEL_10 "LEVEL_3"
Controls how strictly the service verifies visible security features. LEVEL_1 is the least strict and LEVEL_10 is the most strict. Higher levels may increase false rejections. Use Disabled to skip this check.
Disabled, LEVEL_1, LEVEL_2, LEVEL_3, LEVEL_4, LEVEL_5, LEVEL_6, LEVEL_7, LEVEL_8, LEVEL_9, LEVEL_10 "Disabled"
Show child attributes
Show child attributes
Response
Document verification completed. Use verificationStatus and the nested verification result to determine the business outcome.
Whether the request was processed successfully.
Show child attributes
Show child attributes
Business outcome for the verification request.
"VERIFIED"
Numeric code for verificationStatus.
3
"document_verification"
UTC timestamp when the verification record was created.
Metadata supplied in the request.

