# Download

`GET /workspaces/:workspace/artifacts/:artifact_id/versions/:version_id/download`

Download artifact version as ZIP

**Required Scopes:** `ARTIFACT_READ`

## URL Parameters

```typescript
interface URLParameters {
  /** The human-readable ID of the workspace */
  workspace: string; // Example: "my-company"
  /** The Artifact ID */
  artifact_id: string; // Example: "x5169jL2"
  /** The Version ID */
  version_id: string; // Example: "a9f84k2L"
}
```

## Response Example

**Status:** `200 OK`

```json
"(binary zip archive content)"
```

---
Original source: https://buddy.works/docs/api/artifacts/versions/download