Skip to main content
GET
/
api
/
dataframer
/
runs
/
{run_id}
/
files
/
download
Python
import os
from dataframer import Dataframer

client = Dataframer(
    api_key=os.environ.get("DATAFRAMER_API_KEY"),  # This is the default and can be omitted
)
response = client.dataframer.runs.generated_files.download_all(
    "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
)
print(response.download_url)
{
  "download_url": "https://s3.amazonaws.com/bucket/path/to/file.zip?signature=...",
  "size_bytes": 1048576
}

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