Overview
Fetch the raw bytes of an artifact from a completed job’s immutable result snapshot. Artifact paths are returned as part of the job result object once processing finishes. Pass thepath value from those result URLs as the path query parameter to retrieve the corresponding file.
Only artifacts explicitly referenced in the job’s result snapshot are accessible through this endpoint. Attempting to fetch an arbitrary path that is not part of the result will return an error.
Endpoint
Authentication
All requests must include a Bearer token in theAuthorization header.
Path Parameters
The unique identifier of the completed job whose artifact you want to retrieve.
Query Parameters
The artifact path as it appears in the job result’s artifact URL. This value is provided by the API — do not construct artifact paths manually.
Response
Status:200 OK
Content-Type: application/octet-stream
The response body contains the raw binary artifact bytes. Use the Content-Disposition header in the response to determine a suggested filename, if present.
Example Request
Saving with the server-suggested filename
Inspecting headers before downloading
Typical Workflow
- Poll or receive a webhook for job completion.
- Retrieve the job result — it includes artifact URLs with embedded
pathvalues. - Call this endpoint with each
pathto download the corresponding artifact bytes.