# Download

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

Download file content

**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"
  /** Path to the file to download */
  path: string; // Example: "src/main.js"
}
```

## Response Example

**Status:** `200 OK`

```json
"(binary file content)"
```

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