Skip to main content
GET
/
files
/
{id}
/
download
Download File
curl --request GET \
  --url https://www.orgo.ai/api/files/{id}/download \
  --header 'Authorization: Bearer <token>'
{
  "url": "<string>"
}
Get a signed download URL for a file. The URL expires after 1 hour.

Example

curl https://www.orgo.ai/api/files/{id}/download \
  -H "Authorization: Bearer sk_live_..."

Response

{
  "url": "https://signed-url-here..."
}
Then open the URL in a browser or use it to download the file.

Authorizations

Authorization
string
header
required

API key authentication. Format: sk_live_...

Path Parameters

id
string
required

File ID

Response

Download URL

url
string

Signed download URL (expires in 1 hour)