List brand-adherence jobs
curl --request GET \
--url https://api.tastelabs.com/judge/brand-adherence \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.tastelabs.com/judge/brand-adherence"
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.tastelabs.com/judge/brand-adherence', 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.tastelabs.com/judge/brand-adherence",
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.tastelabs.com/judge/brand-adherence"
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.tastelabs.com/judge/brand-adherence")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tastelabs.com/judge/brand-adherence")
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{
"jobs": [
{
"job_id": "<string>",
"status": "accepted",
"reference_url": "<string>",
"source_url": "<string>",
"accepted_at": "2023-11-07T05:31:56Z",
"user_id": "<string>",
"current_step": "<string>",
"step_started_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"cache_hit": {
"design_extraction": {
"reference": true,
"source": true
},
"verifier_extraction": {
"reference": true,
"source": true
},
"final_report": true
},
"is_public": true,
"api_key_name": "<string>",
"completed_at": "2023-11-07T05:31:56Z",
"error": "<string>"
}
],
"total": 123,
"limit": 123,
"offset": 123
}{
"detail": {
"error": "UNAUTHORIZED",
"message": "Bearer token or X-API-Key required"
}
}{
"detail": {
"error": "FORBIDDEN",
"message": "This key is not allowed to call this endpoint."
}
}"Internal Server Error"Brand adherence verifier
List brand-adherence jobs
Lists the caller’s brand-adherence jobs, most recent first. Filter by status; paginate with limit and offset.
GET
/
judge
/
brand-adherence
List brand-adherence jobs
curl --request GET \
--url https://api.tastelabs.com/judge/brand-adherence \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.tastelabs.com/judge/brand-adherence"
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.tastelabs.com/judge/brand-adherence', 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.tastelabs.com/judge/brand-adherence",
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.tastelabs.com/judge/brand-adherence"
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.tastelabs.com/judge/brand-adherence")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tastelabs.com/judge/brand-adherence")
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{
"jobs": [
{
"job_id": "<string>",
"status": "accepted",
"reference_url": "<string>",
"source_url": "<string>",
"accepted_at": "2023-11-07T05:31:56Z",
"user_id": "<string>",
"current_step": "<string>",
"step_started_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"cache_hit": {
"design_extraction": {
"reference": true,
"source": true
},
"verifier_extraction": {
"reference": true,
"source": true
},
"final_report": true
},
"is_public": true,
"api_key_name": "<string>",
"completed_at": "2023-11-07T05:31:56Z",
"error": "<string>"
}
],
"total": 123,
"limit": 123,
"offset": 123
}{
"detail": {
"error": "UNAUTHORIZED",
"message": "Bearer token or X-API-Key required"
}
}{
"detail": {
"error": "FORBIDDEN",
"message": "This key is not allowed to call this endpoint."
}
}"Internal Server Error"Authorizations
API key issued by the Taste Engine. Create one in the dashboard at https://engine.tastelabs.com/app/api-keys.
Query Parameters
Filter by lifecycle status. A job is stored as accepted, completed, or failed; extracting and judging are live states seen only when polling a single job, so filtering by them returns an empty list.
Lifecycle status of a brand-adherence job.
Available options:
accepted, extracting, judging, completed, failed Free-text search over both sides' URLs.
Maximum jobs to return.
Required range:
1 <= x <= 100Number of jobs to skip, for pagination.
Required range:
x >= 0Was this page helpful?

