Skip to main content
GET
/
api
/
v1
/
offline
/
processing
/
{result_id}
Get Analysis Result
curl --request GET \
  --url https://demo.descriptor.ai/api/v1/offline/processing/{result_id} \
  --header 'Authorization: Bearer <token>'
{
  "status": "pending",
  "progress": 50,
  "result": {},
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

result_id
string
required

Response

Successful Response

status
enum<string>

Current status of the analysis

Available options:
pending,
processing,
completed,
failed
progress
number

Processing progress percentage

Required range: 0 <= x <= 100
result
object

Analysis results when processing is complete

error
string

Error message if processing failed