Documents
List Documents
List documents that have extraction records
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List documents that have extraction records
GET https://api.documind.cloud/api/v1/documents
[
{
"document_id": "doc-id-1",
"filename": "invoice.pdf"
},
{
"document_id": "doc-id-2",
"filename": "receipt.jpg"
}
]
response = requests.get(
"https://api.documind.cloud/api/v1/documents",
headers={"X-API-Key": API_KEY}
)
documents = response.json()
Was this page helpful?