Guide
Output & cloud storage
Download URLs and S3/GCS/Azure/FTP/Drive/YouTube export.
By default, converted files are made available as download URLs. You can also push outputs straight to your own cloud storage.
Download URLs
When a job completes, each entry in output[] has a uri, a name, a size and a content_type. Download URLs are valid for 24 hours.
"output": [{ "uri": "https://.../result.pdf", "name": "result.pdf", "content_type": "application/pdf" }]
Cloud export targets
Attach an output_target to a conversion to deliver results elsewhere. Supported providers:
| type | Destination |
|---|---|
amazons3 | Amazon S3 |
googlecloud | Google Cloud Storage |
azure | Azure Blob Storage |
ftp | FTP server |
gdrive | Google Drive |
youtube | YouTube (video upload) |
Example: export to S3
"conversion": [{
"category": "image",
"target": "png",
"output_target": [{
"type": "amazons3",
"parameters": { "bucket": "my-bucket", "file": "out/result.png" },
"credentials": { "...": "provider credentials" }
}]
}]
Treat storage credentials as secrets. Required
parameters differ per provider (e.g. S3 needs bucket + file, Azure needs a container + file).Build an output target
Pick a destination to see its parameters and credentials, with a copy-pasteable request preview. Required fields are pre-filled with example values — replace the credentials with your own.
Loading options…