Skip to main content
GET
/
api
/
v2
/
chat
/
document-analysis
/
{uuid}
Retrieve a document analysis status or results
curl --request GET \
  --url https://paradigm.lighton.ai/api/v2/chat/document-analysis/{uuid} \
  --header 'Authorization: Bearer <token>'
{
  "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "result": "<string>",
  "progress": 123,
  "status": "<string>",
  "reduction_phase": 123,
  "documents": [
    123
  ]
}

Authorizations

Authorization
string
header
required

Bearer token authentication

Path Parameters

uuid
string
required

Response

Analysis result response

Response serializer for document analysis results.

uuid
string<uuid>
required

UUID of the document analysis task

status
string
required

Current status of the analysis task

result
string

Final analysis result text

progress
number

Progress percentage (0-100)

reduction_phase
integer

Current reduction phase of the analysis task

documents
integer[] | null

List of document IDs used in the analysis

I