downloading

Download Single

Download a single file to S3

Requires permission: download:write

post/download/single

Request body

urlstring uri required

URL to download

s3_bucketstring required

S3 bucket for storage

s3_keystring nullable

S3 key for the file

wait_until'commit' | 'domcontentloaded' | 'load' | 'networkidle'

When to consider download complete

downloader_type'async_fleet'

Available downloader types

timeoutinteger

Timeout in milliseconds

Example request

{
  "downloader_type": "async_fleet",
  "s3_bucket": "my-downloads",
  "url": "https://example.com/file.pdf",
  "wait_until": "load"
}

Response

Successful Response

successboolean required
job_idstring nullable
download_urlstring required
s3_bucketstring required
s3_keystring required
errorstring nullable

Changes