Using NPM Package

Now, you can use iApp AI API service with NPM (Node Package Manager). It is the api client library for iApp AI API service for Javascript and NodeJS.

Installation

$ npm install iapp_ai_api

Note: This environment is using node 12+ or node 17

Calling Thai Driver License OCR API

# IDCard Driver License OCR required a file path
api.driverLicense_ocr("media/driver_card.png");

Example Usages

const iapp_ai = require("iapp_ai")
// ##### API KEY ####
const api = new iapp_ai("{Your API Key}");

async function test(){
    const ret = await api.driverLicense_ocr("media/driver_card.png")
    console.log(ret)
}
test()

// output:
// {
// 'en_country': 'Kingdom of Thailand', 
// 'en_expiry': '26 march 2024', 
// 'en_issue': '26 march 2019', 
// 'en_name': 'mr iapp techlogy', 
// 'en_number': '00000000', 
// 'face': '', 
// 'file_name': 'driver_card.png', 
// 'flag': 'Detected', 
// 'id_card': '1111111111111', 
// 'inference': '0.790', 
// 'message': 'Success', 
// 'registrar': 'นาย ทะเบียน กรุงเทพมหานคร bangkok', 
// 'sign': '', 
// 'status_code': 200, 
// 'th_country': 'ประเทศไทย', 
// 'th_expiry': '', 
// 'th_issue': '1 มกราคม 2562', 
// 'th_name': 'นาย ไอ แอ พ พ์ เทคโนโลยี', 
// 'th_number': '00000000', 
// 'th_type': 'ใบ ขับ รถยนต์ส่วน บุคคล'
// }

Last updated