Skip to main content
GET
/
api
/
v3
/
documents
List Documents
curl --request GET \
  --url https://api.nugen.in/api/v3/documents \
  --header 'Authorization: Bearer <token>'
{
  "documents": [
    {
      "id": "<string>",
      "filename": "<string>",
      "type": "<string>",
      "size": 1,
      "upload_date": "<string>",
      "status": "Processing",
      "categories": [
        "<string>"
      ],
      "uploader": "<string>",
      "processing_progress": 100
    }
  ],
  "categories": [
    {
      "name": "<string>",
      "count": 1
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Returns a comprehensive list of all documents uploaded by the authenticated user, including their metadata, processing status, and available document categories with counts

documents
DocumentInfo · object[]
required

List of all documents uploaded by the user, including metadata and processing status

categories
DocumentCategory · object[]
required

List of all document categories with document counts for filtering and organization