GET

/api/parse/result/{taskId}

Get parse result

Get the result of a completed async parse task.

curl https://prismer.cloud/api/parse/result/$TASK_ID \
  -H "Authorization: Bearer $API_KEY"

参数

FieldTypeReqDefaultDescription
taskIdstringY

响应示例

{
  "success": true,
  "taskId": "task-abc",
  "status": "completed",
  "document": {
    "markdown": "# Document Title\n...",
    "pageCount": 10
  }
}

Try it out

Path Parameters
/api/parse/result/{taskId}
Sign in to use your API key
Request Body
Response
Click Execute to test