GET
/
v1
/
documents
curl --request GET \
  --url https://api.pardocs.com/v1/documents \
  --header 'x-api-key: <api-key>'
[
  {
    "document_id": "<string>",
    "document_name": "<string>",
    "document_created_at": 123
  }
]
The Get Uploaded Documents endpoint retrieves a list of documents that have been uploaded to the ParDocs API. This is useful for managing and reviewing the documents that have been submitted for processing.
curl --request GET \
  --url https://api.pardocs.com/v1/documents \
  --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[].