GET
/
paas
/
v4
/
files
/
parser
/
result
/
{taskId}
/
{format_type}
解析结果
curl --request GET \
  --url https://open.bigmodel.cn/api/paas/v4/files/parser/result/{taskId}/{format_type} \
  --header 'Authorization: Bearer <token>'
{
  "status": "succeeded",
  "message": "结果获取成功",
  "content": "这是解析后的文本内容...",
  "task_id": "task_123456789",
  "parsing_result_url": "https://example.com/download/result.zip"
}

Authorizations

Authorization
string
header
required

使用以下格式进行身份验证:Bearer <your api key>

Path Parameters

taskId
string
required

文件解析任务ID

Example:

"task_123456789"

format_type
enum<string>
required

结果返回格式类型

Available options:
text,
download_link
Example:

"text"

Response

200
application/json

结果获取成功

The response is of type object.