Skip to main content
GET
/
api
/
dataframer
/
seed-datasets
/
{dataset_id}
/
files
/
{file_id}
cURL
curl --request GET \
  --url https://df-api.dataframer.ai/api/dataframer/seed-datasets/{dataset_id}/files/{file_id}/ \
  --header 'Authorization: Bearer <token>'
{
  "download_url": "https://s3.amazonaws.com/bucket/path/to/file.csv?AWSAccessKeyId=...&Signature=...&Expires=...",
  "filename": "my_data.csv",
  "content_type": "text/csv"
}

Authorizations

Authorization
string
header
required

API Key authentication. Format: "Bearer YOUR_API_KEY"

Path Parameters

dataset_id
string<uuid>
required

UUID of the dataset

file_id
string<uuid>
required

UUID of the file

Response

Download URL generated successfully

download_url
string

Presigned URL to download the file (valid for 1 hour)

filename
string

Original filename

content_type
string

MIME type of the file