Skip to main content
GET
/
api
/
dataframer
/
anonymization-runs
/
{run_id}
/
download
Download all anonymized files
import requests

url = "https://df-api.dataframer.ai/api/dataframer/anonymization-runs/{run_id}/download/"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
{
  "download_url": "<string>",
  "status": "ready"
}
Async operation: First call triggers ZIP generation with code 202. Poll this same endpoint until you receive 200 with a download_url.

Authorizations

Authorization
string
header
required

API Key authentication. Format: "Bearer YOUR_API_KEY"

Path Parameters

run_id
string<uuid>
required

UUID of the completed anonymization run.

Response

Presigned download URL

Response for the async ZIP download endpoint.

download_url
string<uri> | null

Presigned S3 URL to download the ZIP archive. Expires after 1 hour. null when the ZIP is still being generated (status generating).

status
enum<string>

ready when the ZIP is available and download_url is set. generating when ZIP creation is in progress — poll again until ready.

Available options:
ready,
generating