POST
/
documents
/
get-document-info-list
curl --request POST \
  --url https://api.zeroentropy.dev/v1/documents/get-document-info-list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "collection_name": "<string>",
  "limit": 1024,
  "id_gt": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}'
{
  "documents": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "collection_name": "<string>",
      "path": "<string>",
      "metadata": {},
      "index_status": "parsing_failed",
      "num_pages": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
collection_name
string
required

The name of the collection.

limit
integer
default:1024

The maximum number of documents to return. This field is by default 1024, and cannot be set larger than 1024

id_gt
string | null

All documents returned will have a UUID strictly greater than the provided UUID. (Comparison will be on the binary representations of the UUIDs)

Response

200
application/json
Successful Response
documents
object[]
required