Passport/Visa/Id OCR

FREEMIUM
By kyc-it | Updated il y a un mois | Visual Recognition
Health Check

N/A

README

Example with Pythonโ€™s requests library:

import requests

path_to_your_file = 'tests/data/tst1.jpg'
files = {'uploaded_file': open(path_to_your_file, 'rb')}
headers = {"X-RapidAPI-Key": "c723967abfmsh24ff1bfdd04231fp1d59d5jsn32d8cf31dd0c", "X-RapidAPI-Host": "passport-visa-id-ocr.p.rapidapi.com"}
r = requests.post("https://passport-visa-id-ocr.p.rapidapi.com/mrz", files=files, headers=headers)
if r.status_code == 201:
    tmp_location = r.headers['location']
    print(tmp_location)
# then fetch results
requests.get(tmp_location, headers=headers).json()
'''
{'state': 'SUCCESS',
 'current': 3,
 'total': 3,
 'status': 'Task completed!',
 'result': {'Document Type': 'P',
  'Country': 'IRQ',
  'Surname': 'AL MUSAIED',
  'Name': 'SAAD M SALIH SHNAWA',
  'Doc. Number': 'A14367897',
  'Nationality': 'IRQ',
  'Birth Date': '751208',
  'Sex': 'M',
  'Expiry Date': '260917'}}

'''
Followers: 0
Resources:
Terms of use
API Creator:
Rapid account: Kyc It
kyc-it
kycit
Log In to Rate API
Rating: 5 - Votes: 1