|
注册
首页
联系我们

AI能力 [AI60]下载OCR识别结果

[AI60]下载OCR识别结果公开V1
该接口提供对OCR识别结果下载,根据“[AI60]创建OCR识别任务”接口中返回job_id,查询导出OCR识别结果。 OCR识别支持识别图片或扫描的PDF等文件中的数字、文字信息、表格内容等,且能对版面进行分析,输出跟原文档结构高度接近的多种格式的OCR识别结果。
注意:1、OCR识别结果的下载链接有效期为7天,请及时导出,过期作废。 2、每次只能查询一个导出任务的下载情况。

基本信息

接口地址: /ai/ocr/job_id/status

请求方式: get

返回格式: application/json

登录后即可调试接口,点击 登录/注册

接口说明文档下载

请求参数

query
ParameterTypeRequiredDescriptionSample
job_idstringtrue
查询job_id,下载OCR识别结果,单个查询
15362c5fae034dfc8943df299afc18b5

请求示例

  • Curl
  • NodeJs
  • Python
  • Java
curl -X GET "https://connect-zhihuiya-com.libproxy1.nus.edu.sg/ai/ocr/job_id/status?job_id=15362c5fae034dfc8943df299afc18b5&apikey="
-H "Content-Type:application/json"
-H "authorization:Bearer {token}"
const axios = require('axios');
const options = {
    url: "https://connect-zhihuiya-com.libproxy1.nus.edu.sg/ai/ocr/job_id/status",
    method: "GET",
    headers: {
        'Content-Type': 'application/json',
        'authorization': 'Bearer {token}',
    },
    params: {
        'job_id': '15362c5fae034dfc8943df299afc18b5',
        'apikey': '',
    },
};
axios(options).then(res => {
    console.log(res.data)
}).catch(err => {
    console.log(err)
})
import requests
url = "https://connect-zhihuiya-com.libproxy1.nus.edu.sg/ai/ocr/job_id/status"

params = {
    "job_id": "15362c5fae034dfc8943df299afc18b5",
    "apikey": ""
}

payload = None

headers = {
    "Content-Type": "application/json",
    "authorization": "Bearer {token}"
}

response = requests.request("GET", url, params=params, data=payload, headers=headers)

print(response.text)
public static void main(String[] args) {
    String host = "https://connect-zhihuiya-com.libproxy1.nus.edu.sg";
    String path = "/ai/ocr/job_id/status";

    Map headers = new HashMap();
    headers.put("Content-Type", "application/json");
    headers.put("authorization", "Bearer {token}");

    Map querys = new HashMap();
    querys.put("job_id", "15362c5fae034dfc8943df299afc18b5");
    querys.put("apikey", "");
    try {
        /**
        * Important Tips:
        * Please Download HttpUtils From
        * https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/src/main/java/com/aliyun/api/gateway/demo/util/HttpUtils.java
        *
        * Please refer to the corresponding dependence:
        * https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/pom.xml
        */
        HttpResponse response = HttpUtils.doGet(host, path, null, headers, querys);
        System.out.println(EntityUtils.toString(response.getEntity()));
    } catch (Exception e) {
        e.printStackTrace();
    }
}
复制

返回参数

CommonResponse
ParameterTypeRequiredDescriptionSample
data
objectfalse
响应数据
no sample
status
booleantrue
状态
false
error_msg
stringfalse
错误信息
The request parameter format is incorrect!
error_code
integertrue
错误代码
0
OcrDownloadResponse
ParameterTypeRequiredDescriptionSample
job_id
stringfalse
导出任务id
15362c5fae034dfc8943df299afc18b5
queue_num
integerfalse
队列数量
10
job_status
integerfalse
导出状态(1:正在导出 2:导出成功 3:OCR识别结果生成异常)
1
download_url
stringfalse
OCR识别结果文件下载链接(导出状态为成功时返回)
https://open-zhihuiya-com.libproxy1.nus.edu.sg/imagediscovery/uploadsearch/2024-11-13/1731494812813-49badae4046d4653b284314449599b34-application.pdf?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKIDV4ZwCNYgUAwepmojSxCD0c6PXN8mDiBS%26q-sign-time%3D1731494814%3B1732099614%26q-key-time%3D1731494814%3B1732099614%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D5b8bebcdbd267d004fc7347550ca618a0c70d127
abnormal_cause
stringfalse
异常原因
由于服务器异常,正在修复中

返回状态码

error_codeDescription
0请求成功
401Unauthorized
403Forbidden
404Not Found
68300004请求参数异常!
68300005查询Api失败!
68300006解析基本存取错误!
68300007存在错误的请求!
68300008服务中断异常,请稍后再试!
68300010文件不符合上传规范!
67200000API整体限流错误!
67200001API整体限流错误!
67200002当前调用速率过快,超过当前配置限制QPS!
67200003申请token的key和secret传参不正确或者客户端已被禁用!
67200004请求的接口无权限请联系我们的支持人员!
67200005账户余额/调用次数不足!
67200006客户端超过开通有效期!
67200007当前调用超过当天配置使用额度!
67200008请检查query参数中必填的apikey是否传输!
67200009apikey与所传的bearerToken不匹配,请检查是否使用在有效期内的token!
67200012请求不合法!
67200100当前服务器状态正忙,请求响应超时!
67200101当前请求的Api不存在请检查请求Path!

返回示例

  • json
{
    "data": {
        "job_id": "15362c5fae034dfc8943df299afc18b5",
        "queue_num": 10,
        "job_status": 1,
        "download_url": "https://open-zhihuiya-com.libproxy1.nus.edu.sg/imagediscovery/uploadsearch/2024-11-13/1731494812813-49badae4046d4653b284314449599b34-application.pdf?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKIDV4ZwCNYgUAwepmojSxCD0c6PXN8mDiBS%26q-sign-time%3D1731494814%3B1732099614%26q-key-time%3D1731494814%3B1732099614%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D5b8bebcdbd267d004fc7347550ca618a0c70d127",
        "abnormal_cause": "由于服务器异常,正在修复中"
    },
    "status": true,
    "error_code": 0
}
复制
[AI61]AI翻译