加载接口文档…
5
累计调用
3768ms
平均响应
100.00%
服务可用性
200 次/日
免费额度
无 Key 调用
每日 40 次 · QPS 1
登录免费
当前方案每日 200 次 · QPS 2
黄金会员
每日 40,000 次 · QPS 10
钻石会员
每日 80,000 次 · QPS 30
企业会员
企业接口额度 · QPS 120
与 OCR 文字识别相同:可带 API Key。参数仍是 input_type + input_data,不要改旧接口。登录每天 200 次免费,未登录 40 次,黄金 4 万、钻石 8 万,比普通 OCR 略少。超出 0.02 元/次。
| 名称 | 类型 | 说明 |
|---|---|---|
| input_type | string | 必填 · 图片传入方式:url 或 base64 · 示例:url |
| input_data | string | 必填 · 图片 URL(http/https)或 base64(可带 data:image 前缀,最大 10 MB) · 示例:https://dummyimage.com/400x100/000/fff.png&text=Hello |
| 名称 | 类型 | 说明 |
|---|---|---|
| Authorization | string | 必填 · 必填鉴权。推荐:Bearer <API Key>。兼容请求头 X-API-Key,以及 Query api_key / apikey / key(key 仅当值为 sk_live_/sk_test_/sk_stag_ 形态时生效)。付费接口需携带有效 Key。 |
| Content-Type | string | 必填 · application/json 或 form |
| 名称 | 类型 | 说明 | ||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| input_type | string | 回传输入类型 url / base64 | ||||||||||||||||||||||||||||||||||||
| image.width | number | 原图宽度(像素),坐标系按这张图 | ||||||||||||||||||||||||||||||||||||
| image.height | number | 原图高度(像素) | ||||||||||||||||||||||||||||||||||||
| text_count | number | 识别到的文本块数量 | ||||||||||||||||||||||||||||||||||||
| items | array | 文本块列表,顺序与图上检测顺序一致 | ||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||
| full_text | string | 全部文字用换行拼起来,便于预览 | ||||||||||||||||||||||||||||||||||||
| tips | string | 品牌提示(所有接口统一返回):极数本源 · https://apizero.cn | ||||||||||||||||||||||||||||||||||||
{
"code": 0,
"msg": "成功",
"data": {
"input_type": "url",
"image": {
"width": 906,
"height": 1280
},
"text_count": 2,
"items": [
{
"index": 0,
"text": "拒绝褶皱告别尴尬",
"score": 0.9876,
"rect": {
"x": 80,
"y": 36,
"width": 740,
"height": 88
},
"box": [
[
80,
36
],
[
820,
40
],
[
818,
124
],
[
78,
120
]
]
},
{
"index": 1,
"text": "抗皱黑科技",
"score": 0.9812,
"rect": {
"x": 620,
"y": 690,
"width": 210,
"height": 48
},
"box": [
[
620,
690
],
[
830,
692
],
[
828,
738
],
[
618,
736
]
]
}
],
"full_text": "拒绝褶皱告别尴尬\n抗皱黑科技"
},
"request_id": "req_example",
"tips": "极数本源 · https://apizero.cn"
}坐标按原图像素返回(左上角为原点)。结果随图片清晰度变化;斜向、艺术字、低对比可能漏识或框偏。请勿用于违法用途。