Skip to main content
GET
/
api
/
dataframer
/
runs
/
{run_id}
/
files
/
download
cURL
curl --request GET \
  --url https://df-api.dataframer.ai/api/dataframer/runs/{run_id}/files/download/ \
  --header 'Authorization: Bearer <token>'
{
  "download_url": "https://s3.amazonaws.com/bucket/path/to/file.zip?signature=...",
  "size_bytes": 1048576
}
Async operation: First call triggers ZIP generation with code 202. While ZIP generation is in progress (takes a couple of seconds), this endpoint keeps returning 202. Poll until you receive 200 with a download_url.
The ZIP includes:
  • All generated files with folder structure preserved
  • Metadata files (.metadata) with evaluation classifications if available
  • Top-level metadata (top_level.metadata) with evaluation summary

Authorizations

Authorization
string
header
required

API Key authentication. Format: "Bearer YOUR_API_KEY"

Path Parameters

run_id
string<uuid>
required

The unique identifier of the run

Response

ZIP is ready for download

download_url
string

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

size_bytes
integer

Size of the ZIP file in bytes