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,
  "path_prefix": "<string>",
  "path_gt": "<string>"
}'
{
  "documents": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "collection_name": "<string>",
      "path": "<string>",
      "metadata": {},
      "index_status": "not_parsed",
      "created_at": "<string>",
      "size": 123,
      "num_pages": 123,
      "file_url": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

Successful Response

The response is of type object.