Skip to main content

Video KYC with OCR

In a verification request with OCR, Shufti Pro's client defines the parameters to be verified. Shufti Pro then extracts the necessary information from the document, automatically populating the verification form with the extracted data. This streamlines the process, minimizing manual effort for the end user. Subsequently, Shufti Pro's advanced AI algorithms rigorously verify the provided documents for authenticity.

Run in Postman


Realtime_Verification_with_ocr
//POST /service/real_time/verification HTTP/1.1
//Host: api.shuftipro.com
//Content-Type: application/json
//Authorization: Basic NmI4NmIyNzNmZjM0ZmNlMTlkNmI4WJRTUxINTJHUw==
//replace "Basic" with "Bearer in case of Access Token"

{
"reference" : "1234567",
"callback_url" : "http://www.example.com/",
"email" : "[email protected]",
"country" : "GB",
"language" : "EN",
"redirect_url": "http://www.example.com",
"document" : {
"supported_types" : ["id_card","driving_license","passport"],
"name" : "",
"dob" : "",
"age" : "",
"issue_date" : "",
"expiry_date" : "",
"document_number" : "",
"gender" : ""
},
"address" : {
"supported_types" : ["id_card","bank_statement"],
"name" : "",
"issue_date" : "",
"full_address" : "",
"address_fuzzy_match":"1"
}
}