Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
JavaScript
const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}}; fetch('https://adp.laiye.com/open/agentic_doc_processor/{tenant_name}/v1/app/doc/extract/query/task/{task_id}', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "code": "<string>", "message": "<string>", "tips": "<string>", "data": { "task_id": "<string>", "file_url": "<string>", "status": 123, "doc_recognize_result": [ {} ], "extraction_result": [ {} ], "classify_result": {} } }
根据 task_id 查询卡证抽取任务结果。
租户名称,默认 laiye。
任务 ID。
抽取结果。
Show child attributes