# Download project files

> Every file in the project as one gzipped tar.

Source: https://docs.generalinput.com/api/projects/download-files



<Endpoint method="GET" path="/v1/projects/:id/files/bundle" />

<Access scope="projects:manage" />

The response body is the archive itself (`Content-Type: application/gzip`, `Content-Disposition: attachment`), not JSON.

## Example [#example]

```sh
curl -s "https://cloud.generalinput.com/v1/projects/proj_01HX/files/bundle" \
  -H "Authorization: Bearer $GI_API_KEY" | tar -xz -C ./project-files
```
