Compare Ads Endpoint
curl --request POST \
--url https://api.example.com/api/v1/ads/compare \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"variants": [
{
"headline": "",
"primary_text": "<string>",
"body": "<string>",
"cta": "<string>",
"description": "<string>",
"image_url": "<string>"
}
],
"platform": "<string>"
}
'import requests
url = "https://api.example.com/api/v1/ads/compare"
payload = {
"variants": [
{
"headline": "",
"primary_text": "<string>",
"body": "<string>",
"cta": "<string>",
"description": "<string>",
"image_url": "<string>"
}
],
"platform": "<string>"
}
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({
variants: [
{
headline: '',
primary_text: '<string>',
body: JSON.stringify('<string>'),
cta: '<string>',
description: '<string>',
image_url: '<string>'
}
],
platform: '<string>'
})
};
fetch('https://api.example.com/api/v1/ads/compare', 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.example.com/api/v1/ads/compare",
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([
'variants' => [
[
'headline' => '',
'primary_text' => '<string>',
'body' => '<string>',
'cta' => '<string>',
'description' => '<string>',
'image_url' => '<string>'
]
],
'platform' => '<string>'
]),
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.example.com/api/v1/ads/compare"
payload := strings.NewReader("{\n \"variants\": [\n {\n \"headline\": \"\",\n \"primary_text\": \"<string>\",\n \"body\": \"<string>\",\n \"cta\": \"<string>\",\n \"description\": \"<string>\",\n \"image_url\": \"<string>\"\n }\n ],\n \"platform\": \"<string>\"\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.example.com/api/v1/ads/compare")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"variants\": [\n {\n \"headline\": \"\",\n \"primary_text\": \"<string>\",\n \"body\": \"<string>\",\n \"cta\": \"<string>\",\n \"description\": \"<string>\",\n \"image_url\": \"<string>\"\n }\n ],\n \"platform\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/ads/compare")
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 \"variants\": [\n {\n \"headline\": \"\",\n \"primary_text\": \"<string>\",\n \"body\": \"<string>\",\n \"cta\": \"<string>\",\n \"description\": \"<string>\",\n \"image_url\": \"<string>\"\n }\n ],\n \"platform\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"rankings": [
{}
],
"winner_index": 123,
"rationale": "<string>",
"per_variant_scores": [
{}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Ad Comparison
Compare Ads Endpoint
Compare ad creative variants and rank them.
Combines rule-based audit scoring with LLM pairwise comparison. Returns ranked variants with per-dimension breakdowns.
POST
/
api
/
v1
/
ads
/
compare
Compare Ads Endpoint
curl --request POST \
--url https://api.example.com/api/v1/ads/compare \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"variants": [
{
"headline": "",
"primary_text": "<string>",
"body": "<string>",
"cta": "<string>",
"description": "<string>",
"image_url": "<string>"
}
],
"platform": "<string>"
}
'import requests
url = "https://api.example.com/api/v1/ads/compare"
payload = {
"variants": [
{
"headline": "",
"primary_text": "<string>",
"body": "<string>",
"cta": "<string>",
"description": "<string>",
"image_url": "<string>"
}
],
"platform": "<string>"
}
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({
variants: [
{
headline: '',
primary_text: '<string>',
body: JSON.stringify('<string>'),
cta: '<string>',
description: '<string>',
image_url: '<string>'
}
],
platform: '<string>'
})
};
fetch('https://api.example.com/api/v1/ads/compare', 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.example.com/api/v1/ads/compare",
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([
'variants' => [
[
'headline' => '',
'primary_text' => '<string>',
'body' => '<string>',
'cta' => '<string>',
'description' => '<string>',
'image_url' => '<string>'
]
],
'platform' => '<string>'
]),
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.example.com/api/v1/ads/compare"
payload := strings.NewReader("{\n \"variants\": [\n {\n \"headline\": \"\",\n \"primary_text\": \"<string>\",\n \"body\": \"<string>\",\n \"cta\": \"<string>\",\n \"description\": \"<string>\",\n \"image_url\": \"<string>\"\n }\n ],\n \"platform\": \"<string>\"\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.example.com/api/v1/ads/compare")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"variants\": [\n {\n \"headline\": \"\",\n \"primary_text\": \"<string>\",\n \"body\": \"<string>\",\n \"cta\": \"<string>\",\n \"description\": \"<string>\",\n \"image_url\": \"<string>\"\n }\n ],\n \"platform\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/ads/compare")
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 \"variants\": [\n {\n \"headline\": \"\",\n \"primary_text\": \"<string>\",\n \"body\": \"<string>\",\n \"cta\": \"<string>\",\n \"description\": \"<string>\",\n \"image_url\": \"<string>\"\n }\n ],\n \"platform\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"rankings": [
{}
],
"winner_index": 123,
"rationale": "<string>",
"per_variant_scores": [
{}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Was this page helpful?
⌘I