最近更新时间:2021-10-14
增值税发票识别用于识别您上传的增值税发票图片中的文字内容,并将识别的结果返回给您。支持对增值税发票关键10个字段进行结构化识别,包括发票代码、发票号码、开票日期、购买方名称、购买方纳税人识别号、物品名称、价税合计(小写)、总税额、销售方名称、销售方纳税人识别号。
调用地址:https://apim.unicloud.com/api/ocr/invoice/1.0.0/
请求方式:POST
返回类型:JSON
Header如下:
参数 | 值 | 说明 |
---|---|---|
Content-Type | application/json | -- |
Authorization | Bearer | 参考Token获取 |
Body如下:
参数 | 是否必选 | 类型 | 可选值范围 | 说明 |
---|---|---|---|---|
invoice_pic | true | file | -- | 增值税发票图片(支持jpg、jpeg、png格式) |
注:Body使用form-data形式
curl -k -H "Authorization:Bearer 2b8296e1-86a5-3a68-bd61-9b88f9dce5c0" -F "invoice_pic=@imgpath.jpg" https://apim.unicloud.com/api/ocr/invoice/1.0.0/
字段 | 类型 | 说明 |
---|---|---|
invoice_code | string | 发票代码 |
invoice_number | string | 发票号码 |
invoice_date | string | 开票日期 |
buyer_name | string | 购买方名称 |
buyer_tax_number | string | 购买方纳税人识别号 |
product_name | list | 物品名称 |
money | string | 价税合计(小写) |
tax | string | 总税额 |
seller_name | string | 销售方名称 |
seller_tax_number | string | 销售方纳税人识别号 |
code | string | 是否正常返回(“succeed”,”failed”) |
发票信息:
{ "Data": { "money": "300.8", "buyer_name": "XXXX技术有限公司", "buyer_tax_number": "9112XXXXXXXXXXXXXX", "seller_tax_number": "9112XXXXXXXXXXXXXX", "invoice_date": "2019年08月13日", "tax": "8.76", "seller_name": "滴滴出行科技有限公司", "invoice_number": "33823818", "invoice_code": "012001900111", "product_name": [ "*运输服务*客运服务费" ] }, "code": "succeed"}
{ "Data": { "money": "300.8", "buyer_name": "XXXX技术有限公司", "buyer_tax_number": "9112XXXXXXXXXXXXXX", "seller_tax_number": "9112XXXXXXXXXXXXXX", "invoice_date": "2019年08月13日", "tax": "8.76", "seller_name": "滴滴出行科技有限公司", "invoice_number": "33823818", "invoice_code": "012001900111", "product_name": [ "*运输服务*客运服务费" ] }, "code": "succeed" }
{ "Data": { "money": "300.8", "buyer_name": "XXXX技术有限公司", "buyer_tax_number": "9112XXXXXXXXXXXXXX", "seller_tax_number": "9112XXXXXXXXXXXXXX", "invoice_date": "2019年08月13日", "tax": "8.76", "seller_name": "滴滴出行科技有限公司", "invoice_number": "33823818", "invoice_code": "012001900111", "product_name": [ "*运输服务*客运服务费" ] }, "code": "succeed"}