API allows user to send picture for PAN Card and sends the information of the pan card in json format.
HTTP Method | Endpoint |
---|---|
post | https://ocr.itaxeasy.com/pan |
Name | Type | Required | Description |
---|---|---|---|
file | Form-data | Yes | The File which user wants to extract information from i.e. PAN Card Picture. |
Name | Type | Required | Description |
---|---|---|---|
name | String | Yes | The extracted name from the file |
fatherName | String | Yes | The extracted fathers name from the file |
dob | String | Yes | The extracted dob from the file |
pan | String | Yes | The extracted PAN from the file |
{
"status": "success",
"data": {
"name": "",
"fatherName": "",
"dob": "",
"pan": ""
}
}