Get upload status
Fetch an image’s upload lifecycle and metadata.
Poll this after a resumable upload until upload_status is ready —
conversion runs off the request path, so a freshly completed upload is not
immediately usable. Only a ready image can be passed to POST /predict. A
failed status carries the reason in upload_error. (After a
single-request upload the image is already ready, so there is nothing to
poll for.)
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Response
Successful Response
An image's upload lifecycle and metadata — enough to know when a freshly
uploaded image is ready to run a prediction against.
Lifecycle of a resumable S3 multipart image upload.
uploading -> row created, bytes still being PUT directly to S3
processing -> object landed in S3, backend is converting it off the event loop
ready -> conversion done, shape populated, image is usable
failed -> aborted or conversion failed (orphan-sweep cron will reap it)
uploading, processing, ready, failed TIFF