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"Parameters
| Field | Type | Req | Default | Description |
|---|---|---|---|---|
| taskId | string | Y | — |
Response Example
{
"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