GET
/
v1
/
documents
/
{document_id}
curl --request GET \
  --url https://api.pardocs.com/v1/documents/{document_id} \
  --header 'x-api-key: <api-key>'
[
  {
    "document_id": "<string>",
    "document_name": "<string>",
    "document_created_at": 123,
    "results": [
      {
        "document_type": "<string>",
        "pages": [
          123
        ],
        "extracted": {}
      }
    ]
  }
]
The Get Previous Result endpoint allows you to retrieve the extraction and splitter results of a previously processed document. This is useful for reviewing past extractions without reprocessing the document, saving both time and resources. Path Parameters:
  • document_id (string, required): The unique identifier of the document whose extraction result you want to retrieve.
curl --request GET \
  --url https://api.pardocs.com/v1/documents/{document_id} \
  --header 'x-api-key: <api-key>'

Authorizations

x-api-key
string
header
required

Response

200
application/json

Successful Response

The response is of type object[].