Skip to main content
GET
Get prediction progress

Authorizations

Authorization
string
header
required

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

Path Parameters

predictionKey
string<uuid>
required

Response

Prediction progress successful response

status
enum<string>
required

Status of prediction processing:

  • PENDING - The prediction has been successfully created and is pending execution
  • RUNNING - The prediction is currently being processed. When this status is returned, an url for progress check is returned too
  • COMPLETED - The prediction has been successfully completed. An url to download the result as CSV is provided in the response
  • FAILED - The prediction execution has failed
  • TIMEOUT - The prediction execution has timed out
Available options:
PENDING,
RUNNING,
COMPLETED,
FAILED,
TIMEOUT