GET
/
v1
/
files
/
{file_id}
/
content
curl --request GET \
  --url https://geoff.ai/api/v1/files/file_abc123/content \
  --header 'Authorization: Bearer <token>' \
  --output downloaded_file.jpg
Binary file data (Content-Type varies by file type)

Authorization

Authorization
string
required
Bearer token. Bearer API_key.

Path Parameters

file_id
string
required
The file ID to download.
curl --request GET \
  --url https://geoff.ai/api/v1/files/file_abc123/content \
  --header 'Authorization: Bearer <token>' \
  --output downloaded_file.jpg
Binary file data (Content-Type varies by file type)