Preview or asynchronously delete inputs
curl --request POST \
--url https://api.trycarhub.com/v1/uploads/deletions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"upload_refs": [
"upl_7Qm2hV9tXbLd"
],
"before": "2023-11-07T05:31:56Z",
"reclaim_bytes": 2,
"dry_run": false
}
'import requests
url = "https://api.trycarhub.com/v1/uploads/deletions"
payload = {
"upload_refs": ["upl_7Qm2hV9tXbLd"],
"before": "2023-11-07T05:31:56Z",
"reclaim_bytes": 2,
"dry_run": False
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
upload_refs: ['upl_7Qm2hV9tXbLd'],
before: '2023-11-07T05:31:56Z',
reclaim_bytes: 2,
dry_run: false
})
};
fetch('https://api.trycarhub.com/v1/uploads/deletions', 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.trycarhub.com/v1/uploads/deletions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'upload_refs' => [
'upl_7Qm2hV9tXbLd'
],
'before' => '2023-11-07T05:31:56Z',
'reclaim_bytes' => 2,
'dry_run' => false
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.trycarhub.com/v1/uploads/deletions"
payload := strings.NewReader("{\n \"upload_refs\": [\n \"upl_7Qm2hV9tXbLd\"\n ],\n \"before\": \"2023-11-07T05:31:56Z\",\n \"reclaim_bytes\": 2,\n \"dry_run\": false\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.trycarhub.com/v1/uploads/deletions")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"upload_refs\": [\n \"upl_7Qm2hV9tXbLd\"\n ],\n \"before\": \"2023-11-07T05:31:56Z\",\n \"reclaim_bytes\": 2,\n \"dry_run\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.trycarhub.com/v1/uploads/deletions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"upload_refs\": [\n \"upl_7Qm2hV9tXbLd\"\n ],\n \"before\": \"2023-11-07T05:31:56Z\",\n \"reclaim_bytes\": 2,\n \"dry_run\": false\n}"
response = http.request(request)
puts response.read_bodyUploads
Preview or asynchronously delete inputs
POST
/
v1
/
uploads
/
deletions
Preview or asynchronously delete inputs
curl --request POST \
--url https://api.trycarhub.com/v1/uploads/deletions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"upload_refs": [
"upl_7Qm2hV9tXbLd"
],
"before": "2023-11-07T05:31:56Z",
"reclaim_bytes": 2,
"dry_run": false
}
'import requests
url = "https://api.trycarhub.com/v1/uploads/deletions"
payload = {
"upload_refs": ["upl_7Qm2hV9tXbLd"],
"before": "2023-11-07T05:31:56Z",
"reclaim_bytes": 2,
"dry_run": False
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
upload_refs: ['upl_7Qm2hV9tXbLd'],
before: '2023-11-07T05:31:56Z',
reclaim_bytes: 2,
dry_run: false
})
};
fetch('https://api.trycarhub.com/v1/uploads/deletions', 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.trycarhub.com/v1/uploads/deletions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'upload_refs' => [
'upl_7Qm2hV9tXbLd'
],
'before' => '2023-11-07T05:31:56Z',
'reclaim_bytes' => 2,
'dry_run' => false
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.trycarhub.com/v1/uploads/deletions"
payload := strings.NewReader("{\n \"upload_refs\": [\n \"upl_7Qm2hV9tXbLd\"\n ],\n \"before\": \"2023-11-07T05:31:56Z\",\n \"reclaim_bytes\": 2,\n \"dry_run\": false\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.trycarhub.com/v1/uploads/deletions")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"upload_refs\": [\n \"upl_7Qm2hV9tXbLd\"\n ],\n \"before\": \"2023-11-07T05:31:56Z\",\n \"reclaim_bytes\": 2,\n \"dry_run\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.trycarhub.com/v1/uploads/deletions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"upload_refs\": [\n \"upl_7Qm2hV9tXbLd\"\n ],\n \"before\": \"2023-11-07T05:31:56Z\",\n \"reclaim_bytes\": 2,\n \"dry_run\": false\n}"
response = http.request(request)
puts response.read_bodyAuthorizations
Organisation API key, sent as Authorization: Bearer chk_live_….
chk_live_…— real inference, real credits,livemode: true.chk_test_…— identical pipeline against the fixture backend, test credits,livemode: false.
Keys are stored hashed; only the prefix (chk_live_a1b2…) is ever displayed again. A key
may be scoped to a subset of endpoint families — calling outside its scopes is a 403.
Body
application/json
- Option 1
- Option 2
- Option 3
Exactly one selector is required.
Response
Dry-run preview.