For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
GuidesAPI ReferenceChangelog
GuidesAPI ReferenceChangelog
  • API Reference
      • GETList extractions
      • POSTExtract document
      • POSTUpload and extract document
      • GETGet extraction
      • POSTSubmit extraction feedback
  • Event Reference
API ReferenceDocument Insights

List extractions

GET
https://api.plextera.com/api/public/v1/document-insights/extractions
GET
/api/public/v1/document-insights/extractions
$curl https://api.plextera.com/api/public/v1/document-insights/extractions \
> -H "Authorization: <apiKey>"
200Completed extractions page
1{
2 "data": [
3 {
4 "id": "69654f0bc073ef404baec649",
5 "status": "COMPLETED",
6 "outputAvailable": true,
7 "createdAt": "2026-04-07T10:05:04Z",
8 "updatedAt": "2026-04-07T10:22:00Z",
9 "completedAt": "2026-04-07T10:22:00Z",
10 "tags": {
11 "customerDocumentId": "lab-42",
12 "docType": "lab-result"
13 },
14 "document": {
15 "fileId": "file_01JY7M4ZVX5R1P3M3Q0TA1S7ZM",
16 "fileName": "lab-result.pdf",
17 "mimeType": "application/pdf",
18 "sizeBytes": 63877,
19 "pageCount": 1
20 }
21 }
22 ],
23 "pageInfo": {
24 "page": 0,
25 "size": 50,
26 "totalItems": 1,
27 "totalPages": 1
28 }
29}
Returns recent Document Insights extractions with status, document summary, and paging details. Use this endpoint for history and status views. Use Get extraction for the full output.
Was this page helpful?
Previous

Extract document

Next
Built with

Authentication

Authorizationstring

Use the API key format: api-key <token>.

Query parameters

pageintegerOptional
sizeintegerOptional
statusenumOptional
Filter by extraction status.
Allowed values:
fromdatetimeOptional

Return extractions created at or after this UTC ISO-8601 timestamp.

todatetimeOptional

Return extractions created at or before this UTC ISO-8601 timestamp.

sortByenumOptional
Field used to sort the list. Defaults to createdAt.
Allowed values:
sortenumOptional
Sort direction. Defaults to desc.
Allowed values:

Response

OK
datalist of objects
pageInfoobject