> For the complete documentation index, see [llms.txt](https://docs.fast-file.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.fast-file.com/file-download.md).

# File Download

Endpoints for downloading files

## Download a file

> Download a file by its ID

```json
{"openapi":"3.0.3","info":{"title":"Fast File API","version":"1.3.0"},"tags":[{"name":"Download","description":"Endpoints for downloading files"}],"servers":[{"url":"https://fast-file.com"}],"paths":{"/{file_id}/download":{"get":{"tags":["Download"],"summary":"Download a file","description":"Download a file by its ID","parameters":[{"in":"path","name":"file_id","required":true,"schema":{"type":"string"},"description":"The ID of the file"}],"responses":{"200":{"description":"File downloaded successfully","content":{"application/octet-stream":{"schema":{"type":"string","format":"binary"}}}},"404":{"description":"File not found","content":{"application/json":{"schema":{"type":"object","properties":{"isSuccess":{"type":"boolean"},"warnings":{"type":"array","items":{"type":"string"}}}}}}}}}}}}
```
