curl --request GET \
--url https://api.example.com/api/v1/ad-library/advertisers/{advertiser_id}/paid-search \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.com/api/v1/ad-library/advertisers/{advertiser_id}/paid-search"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.example.com/api/v1/ad-library/advertisers/{advertiser_id}/paid-search', 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/ad-library/advertisers/{advertiser_id}/paid-search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.example.com/api/v1/ad-library/advertisers/{advertiser_id}/paid-search"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.example.com/api/v1/ad-library/advertisers/{advertiser_id}/paid-search")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/ad-library/advertisers/{advertiser_id}/paid-search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"advertiser_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"measured": true,
"advertiser_name": "<string>",
"domain": "<string>",
"captured_at": "2023-11-07T05:31:56Z",
"creatives_captured_at": "2023-11-07T05:31:56Z",
"location_code": 123,
"language_code": "<string>",
"source": "<string>",
"creatives_location_code": 123,
"creatives_language_code": "<string>",
"creatives_source": "<string>",
"paid_keyword_count": 123,
"est_monthly_spend_usd": 123,
"est_paid_traffic": 123,
"avg_cpc_usd": 123,
"paid_vs_organic_ratio": 123,
"active_ad_count": 123,
"keywords": [
{
"keyword": "<string>",
"position": 123,
"cpc": 123,
"search_volume": 123,
"etv": 123,
"url": "<string>",
"paid": true
}
],
"google_ads": [
{}
],
"spend_points": [
{
"captured_at": "2023-11-07T05:31:56Z",
"est_monthly_spend_usd": 123
}
],
"estimate_notice": "Estimated — spend, traffic, CPC, keyword count and active ads are all modelled from competitor paid keywords. Not actual competitor figures."
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Get Global Ad Library Advertiser Paid Search
Paid-search market facts for one GLOBAL advertiser identity.
Brand Details’ Paid Search read. Scoped to the advertiser, never to a
viewing workspace: paid-search estimates describe a public domain, and
global evidence is independent of tenant projections (BI-D03 / BI-D04).
Until 2026-09-02 this data was only reachable through the brand_id-
scoped dashboard routes, so an advertiser was readable from exactly the one
workspace whose competitor list held its exact domain — 287,645 of 289,054
production (viewing brand, measured advertiser) pairs were locked out of
data that existed.
Read-only and provider-free (BI-D09). Returns measured=False rather than
404 when no capture exists, so the caller can tell “unmeasured” from
“unknown advertiser”.
curl --request GET \
--url https://api.example.com/api/v1/ad-library/advertisers/{advertiser_id}/paid-search \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.com/api/v1/ad-library/advertisers/{advertiser_id}/paid-search"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.example.com/api/v1/ad-library/advertisers/{advertiser_id}/paid-search', 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/ad-library/advertisers/{advertiser_id}/paid-search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.example.com/api/v1/ad-library/advertisers/{advertiser_id}/paid-search"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.example.com/api/v1/ad-library/advertisers/{advertiser_id}/paid-search")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/ad-library/advertisers/{advertiser_id}/paid-search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"advertiser_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"measured": true,
"advertiser_name": "<string>",
"domain": "<string>",
"captured_at": "2023-11-07T05:31:56Z",
"creatives_captured_at": "2023-11-07T05:31:56Z",
"location_code": 123,
"language_code": "<string>",
"source": "<string>",
"creatives_location_code": 123,
"creatives_language_code": "<string>",
"creatives_source": "<string>",
"paid_keyword_count": 123,
"est_monthly_spend_usd": 123,
"est_paid_traffic": 123,
"avg_cpc_usd": 123,
"paid_vs_organic_ratio": 123,
"active_ad_count": 123,
"keywords": [
{
"keyword": "<string>",
"position": 123,
"cpc": 123,
"search_volume": 123,
"etv": 123,
"url": "<string>",
"paid": true
}
],
"google_ads": [
{}
],
"spend_points": [
{
"captured_at": "2023-11-07T05:31:56Z",
"est_monthly_spend_usd": 123
}
],
"estimate_notice": "Estimated — spend, traffic, CPC, keyword count and active ads are all modelled from competitor paid keywords. Not actual competitor figures."
}{
"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.
Path Parameters
Response
Successful Response
Global paid-search evidence for ONE advertiser identity.
The Brand Details Paid Search read (vault 25.3: advertiser_id is the key
for "identity across ads, reviews, profiles, group members, Brand Details").
Keyed by advertiser, never by brand_id — the tenant axis is independent
of global market facts (BI-D04), so this shape carries no tenant field at
all and cannot be re-scoped to one workspace's competitor list.
Deliberately WITHOUT overlap_keyword_count / gap_keyword_count /
shared+gap keyword arrays. Those are "capturing brand vs this competitor"
projections; serving another tenant's copy would leak that tenant's keyword
footprint (BI-D03). The exclusion lives in the model so it survives edits to
the service.
measured=False means no capture exists for this domain anywhere. It is
NOT the same as a capture that measured zero paid keywords, which arrives
measured=True with zeroes (BI-D10). Neither state is an error and
neither is retryable — acquisition is a background/operator path (BI-D09).
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Was this page helpful?