Passport/Visa/Id OCR

フリーミアム
よって kyc-it | 更新済み hace 2 meses | Visual Recognition
人気

0.2 / 10

レイテンシー

88ms

サービスレベル

0%

Health Check

N/A

すべてのチュートリアルに戻る (1)

Python's Requests

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"} #, "Authorization": "Basic cmFwaWRhcGk6a3UyR1FUVC1SZDVqalg/IzJhd0B2X3V1amU="}
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) # looks like 'https://passport-visa-id-ocr.p.rapidapi.com/mrz/6c683feb-8b50-4b2a-a8ac-d6c478665f78'
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'}}
""