Overview
Stream a single artifact using a short-lived, scoped download token. This endpoint is unauthenticated — the token itself acts as the credential and is consumed on a successful response. Use this route to generate shareable, time-limited download links or to hand off artifact delivery to a browser or third-party client without exposing your API key.Endpoint
Security
This route is unauthenticated. Do not include anAuthorization header — it is neither required nor accepted.
The download token serves as the sole credential. It is:
- Short-lived — expires within a limited time window after issuance.
- Single-use — consumed on a successful
200response. - Scoped — grants access to exactly one artifact.
Path Parameters
The short-lived download token issued by a prior API call. Tokens are opaque strings — do not parse or manipulate them.
Response
Status:200 OK
Content-Type: application/octet-stream
The response body streams the raw binary artifact bytes. The token is consumed upon this response being sent.
Token Lifecycle
Example Requests
Download to a file
Save with server-suggested filename
Use in a browser
Download tokens can be embedded directly in an<a href> or <img src> to deliver artifacts to end users without exposing API credentials: