Skip to main content
GET
/
api
/
v2
/
tools
/
document-analysis
/
{analysis_uuid}
/
status
cURL
curl --request GET \
  --url https://paradigm.lighton.ai/api/v2/tools/document-analysis/{analysis_uuid}/status/ \
  --header 'Authorization: Bearer <token>'
{
  "task_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "progress": 123,
  "completed_at": "2023-11-07T05:31:56Z",
  "result": {},
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

analysis_uuid
string
required

UUID of the document analysis task

Response

200 - application/json

Response serializer for document analysis status.

task_id
string<uuid>
required

UUID of the document analysis task

status
string
required

Current status of the analysis task

created_at
string<date-time>
required

When the analysis was started

progress
number<double>

Progress percentage (0-100)

completed_at
string<date-time>

When the analysis was completed

result
object

Analysis results when completed

error
string

Error message if analysis failed