v1

latestOpenAPI 3.0.02026-07-26492143.5 KB
Artifacts

Download artifact

Returns a signed download URL for an artifact, plus its filename, media type, and size. Follow download_url to fetch the file bytes.

get/artifacts/{artifact_id}/download

Path parameters

artifact_idstring required

ID of the artifact to download.

Query parameters

version_idstring

Specific version of the artifact to download. Defaults to the latest version when omitted.

Response

Signed download URL and file metadata.

download_urlstring required

Signed URL the caller can GET to fetch the file bytes.

filenamestring nullable
media_typestring nullable
sizeinteger nullable

File size in bytes.

Example response

{
  "download_url": "https://storage.googleapis.com/gumloop-artifacts/art_aBcDeF123?X-Goog-Signature=...",
  "filename": "q4_sales_report.pdf",
  "media_type": "application/pdf",
  "size": 12345
}