Skip to main content

Endpoint

GET https://api.documind.cloud/api/v1/documents

Response

The backend builds this list from extraction records for the authenticated user. Newly uploaded documents may not appear until an extraction exists for them.
[
  {
    "document_id": "doc-id-1",
    "filename": "invoice.pdf"
  },
  {
    "document_id": "doc-id-2",
    "filename": "receipt.jpg"
  }
]

Example

response = requests.get(
    "https://api.documind.cloud/api/v1/documents",
    headers={"X-API-Key": API_KEY}
)

documents = response.json()