cURL
curl --request GET \ --url https://api.lilt.com/v2/jobs/{jobId}/download \ --header 'Authorization: Basic <encoded-value>'
"aSDinaTvuI8gbWludGxpZnk="
Make sure you have exported a job with the same id before using this api.
Downloading files requires the exported job id in the param.
id
Example CURL command:
curl -X GET 'https://api.lilt.com/v2/jobs/{id}/download?key=API_KEY'
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
A job id.
zipped file
The response is of type string<byte>.
string<byte>
Was this page helpful?