Skip to main content
GET
/
api
/
v3
/
documents
/
{id}
Upload Documents Status
curl --request GET \
  --url https://api.nugen.in/api/v3/documents/{id} \
  --header 'Authorization: Bearer <token>'
{
  "status": "READY",
  "document_id": "doc-xyz789"
}

Documentation Index

Fetch the complete documentation index at: https://docs.nugen.in/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

Returns the upload status for a given unique ID received from upload document endpoint. This endpoint allows clients to check the progress of a document upload after initiating it via the upload endpoint.

status
string
required

Current upload status: PROCESSING, READY, FAILED, or unknown

Example:

"READY"

document_id
string | null

Document ID once the upload is READY; null while still uploading or if failed

Example:

"doc-xyz789"