Get bulk download status
curl --request GET \
--url https://api.cut.pro/api/v1/renders/bulk-download/{jobId} \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.cut.pro/api/v1/renders/bulk-download/{jobId}"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api.cut.pro/api/v1/renders/bulk-download/{jobId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.cut.pro/api/v1/renders/bulk-download/{jobId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.cut.pro/api/v1/renders/bulk-download/{jobId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.cut.pro/api/v1/renders/bulk-download/{jobId}")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cut.pro/api/v1/renders/bulk-download/{jobId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"job_id": "<string>",
"status": "queued",
"progress": 123,
"render_count": 123,
"file_size": 123,
"error_code": "<string>",
"created_at": "<string>",
"completed_at": "<string>",
"expires_at": "<string>",
"download_url": "<string>",
"filename": "<string>"
}{
"code": "JOB_NOT_FOUND"
}{
"code": "JOB_EXPIRED"
}Renderização
Get bulk download status
Returns the current state of a bulk download job. Poll every 5–10 seconds until status is completed. Once complete, download_url is a signed URL valid for one hour; the underlying file is purged once expires_at passes.
GET
/
renders
/
bulk-download
/
{jobId}
Get bulk download status
curl --request GET \
--url https://api.cut.pro/api/v1/renders/bulk-download/{jobId} \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.cut.pro/api/v1/renders/bulk-download/{jobId}"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api.cut.pro/api/v1/renders/bulk-download/{jobId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.cut.pro/api/v1/renders/bulk-download/{jobId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.cut.pro/api/v1/renders/bulk-download/{jobId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.cut.pro/api/v1/renders/bulk-download/{jobId}")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cut.pro/api/v1/renders/bulk-download/{jobId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"job_id": "<string>",
"status": "queued",
"progress": 123,
"render_count": 123,
"file_size": 123,
"error_code": "<string>",
"created_at": "<string>",
"completed_at": "<string>",
"expires_at": "<string>",
"download_url": "<string>",
"filename": "<string>"
}{
"code": "JOB_NOT_FOUND"
}{
"code": "JOB_EXPIRED"
}Autorizações
Parâmetros de caminho
Resposta
Response for status 200
Opções disponíveis:
queued, active, completed, failed 0 to 100
Final zip size in bytes; null until completed
Signed URL valid for 1h. Only populated when status is completed.
Última modificação em 23 de agosto de 2026
Esta página foi útil?