curl --request POST \
--url https://api.example.com/api/v1/brands/{brand_id}/brand-intelligence/board-insights \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ad_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"board_label": "<string>",
"date_from": "2023-12-25",
"date_to": "2023-12-25"
}
'import requests
url = "https://api.example.com/api/v1/brands/{brand_id}/brand-intelligence/board-insights"
payload = {
"ad_ids": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"board_label": "<string>",
"date_from": "2023-12-25",
"date_to": "2023-12-25"
}
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({
ad_ids: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
board_label: '<string>',
date_from: '2023-12-25',
date_to: '2023-12-25'
})
};
fetch('https://api.example.com/api/v1/brands/{brand_id}/brand-intelligence/board-insights', 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/brands/{brand_id}/brand-intelligence/board-insights",
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([
'ad_ids' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'board_label' => '<string>',
'date_from' => '2023-12-25',
'date_to' => '2023-12-25'
]),
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/brands/{brand_id}/brand-intelligence/board-insights"
payload := strings.NewReader("{\n \"ad_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"board_label\": \"<string>\",\n \"date_from\": \"2023-12-25\",\n \"date_to\": \"2023-12-25\"\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/brands/{brand_id}/brand-intelligence/board-insights")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"ad_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"board_label\": \"<string>\",\n \"date_from\": \"2023-12-25\",\n \"date_to\": \"2023-12-25\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/brands/{brand_id}/brand-intelligence/board-insights")
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 \"ad_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"board_label\": \"<string>\",\n \"date_from\": \"2023-12-25\",\n \"date_to\": \"2023-12-25\"\n}"
response = http.request(request)
puts response.read_body{
"generated_at": "2023-11-07T05:31:56Z",
"group_key": "<string>",
"signals": {
"total_ads": 0,
"active_ads": 0,
"inactive_ads": 0,
"dated_ads": 0,
"themed_ads": 0,
"new_ads_30d": 0,
"new_ads_14d": 0,
"new_ads_7d": 0,
"first_seen_at": "2023-11-07T05:31:56Z",
"last_seen_at": "2023-11-07T05:31:56Z",
"longest_active_days": 123,
"avg_active_days": 123,
"run_length_measured_ads": 0,
"distinct_concepts": 0,
"avg_video_duration_seconds": 123,
"platforms": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"formats": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"landing_domains": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"landing_pages": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"hooks": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"ctas": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"countries": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"languages": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"industries": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"themes": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"launched_by_month": [
{
"month": "<string>",
"count": 0
}
]
},
"group_label": "<string>",
"brand_count": 0,
"dated_ad_count": 0,
"date_from": "2023-12-25",
"date_to": "2023-12-25",
"brands": [
{
"advertiser_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"domain": "<string>",
"total_ads": 0,
"active_ads": 0,
"new_ads_30d": 0,
"image_ads": 0,
"video_ads": 0,
"other_ads": 0,
"dated_ads": 0,
"platform_mapped_ads": 0,
"platform_mapped_image_ads": 0,
"platform_mapped_video_ads": 0,
"platform_mapped_other_ads": 0,
"platforms": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"themed_ads": 0,
"themes": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"last_seen_at": "2023-11-07T05:31:56Z"
}
],
"launched_by_weekday": [
{
"weekday": 3,
"total": 0,
"brands": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
]
}
],
"own_brand": {
"advertiser_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"domain": "<string>",
"total_ads": 0,
"active_ads": 0,
"new_ads_30d": 0,
"image_ads": 0,
"video_ads": 0,
"other_ads": 0,
"dated_ads": 0,
"platform_mapped_ads": 0,
"platform_mapped_image_ads": 0,
"platform_mapped_video_ads": 0,
"platform_mapped_other_ads": 0,
"platforms": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"themed_ads": 0,
"themes": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"last_seen_at": "2023-11-07T05:31:56Z"
},
"own_brand_state": "not_resolved",
"own_brand_classified_ads": 0,
"dominant_industry": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Get Brand Intelligence Board Insights Route
Aggregate ad signals across one Ad Board (Boards INSIGHTS).
POST because a board is a client-curated ad-id set — boards live in localStorage, not the DB. The response reuses the group-insights schema: the aggregation is identical, only the scope differs (ads vs advertisers).
Client-curated means no server-side membership to inherit, and
board_insights_service derives advertiser identity FROM the ads it is
handed — so the ad ids are narrowed first, same treatment as the
advertiser-id cohorts (finding C2 / ruling R21). Orphaned ads
(advertiser_id IS NULL) stay in: nobody claimed them.
curl --request POST \
--url https://api.example.com/api/v1/brands/{brand_id}/brand-intelligence/board-insights \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ad_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"board_label": "<string>",
"date_from": "2023-12-25",
"date_to": "2023-12-25"
}
'import requests
url = "https://api.example.com/api/v1/brands/{brand_id}/brand-intelligence/board-insights"
payload = {
"ad_ids": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"board_label": "<string>",
"date_from": "2023-12-25",
"date_to": "2023-12-25"
}
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({
ad_ids: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
board_label: '<string>',
date_from: '2023-12-25',
date_to: '2023-12-25'
})
};
fetch('https://api.example.com/api/v1/brands/{brand_id}/brand-intelligence/board-insights', 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/brands/{brand_id}/brand-intelligence/board-insights",
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([
'ad_ids' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'board_label' => '<string>',
'date_from' => '2023-12-25',
'date_to' => '2023-12-25'
]),
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/brands/{brand_id}/brand-intelligence/board-insights"
payload := strings.NewReader("{\n \"ad_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"board_label\": \"<string>\",\n \"date_from\": \"2023-12-25\",\n \"date_to\": \"2023-12-25\"\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/brands/{brand_id}/brand-intelligence/board-insights")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"ad_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"board_label\": \"<string>\",\n \"date_from\": \"2023-12-25\",\n \"date_to\": \"2023-12-25\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/brands/{brand_id}/brand-intelligence/board-insights")
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 \"ad_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"board_label\": \"<string>\",\n \"date_from\": \"2023-12-25\",\n \"date_to\": \"2023-12-25\"\n}"
response = http.request(request)
puts response.read_body{
"generated_at": "2023-11-07T05:31:56Z",
"group_key": "<string>",
"signals": {
"total_ads": 0,
"active_ads": 0,
"inactive_ads": 0,
"dated_ads": 0,
"themed_ads": 0,
"new_ads_30d": 0,
"new_ads_14d": 0,
"new_ads_7d": 0,
"first_seen_at": "2023-11-07T05:31:56Z",
"last_seen_at": "2023-11-07T05:31:56Z",
"longest_active_days": 123,
"avg_active_days": 123,
"run_length_measured_ads": 0,
"distinct_concepts": 0,
"avg_video_duration_seconds": 123,
"platforms": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"formats": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"landing_domains": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"landing_pages": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"hooks": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"ctas": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"countries": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"languages": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"industries": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"themes": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"launched_by_month": [
{
"month": "<string>",
"count": 0
}
]
},
"group_label": "<string>",
"brand_count": 0,
"dated_ad_count": 0,
"date_from": "2023-12-25",
"date_to": "2023-12-25",
"brands": [
{
"advertiser_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"domain": "<string>",
"total_ads": 0,
"active_ads": 0,
"new_ads_30d": 0,
"image_ads": 0,
"video_ads": 0,
"other_ads": 0,
"dated_ads": 0,
"platform_mapped_ads": 0,
"platform_mapped_image_ads": 0,
"platform_mapped_video_ads": 0,
"platform_mapped_other_ads": 0,
"platforms": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"themed_ads": 0,
"themes": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"last_seen_at": "2023-11-07T05:31:56Z"
}
],
"launched_by_weekday": [
{
"weekday": 3,
"total": 0,
"brands": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
]
}
],
"own_brand": {
"advertiser_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"domain": "<string>",
"total_ads": 0,
"active_ads": 0,
"new_ads_30d": 0,
"image_ads": 0,
"video_ads": 0,
"other_ads": 0,
"dated_ads": 0,
"platform_mapped_ads": 0,
"platform_mapped_image_ads": 0,
"platform_mapped_video_ads": 0,
"platform_mapped_other_ads": 0,
"platforms": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"themed_ads": 0,
"themes": [
{
"key": "<string>",
"count": 0,
"image_count": 0,
"video_count": 0,
"other_count": 0
}
],
"last_seen_at": "2023-11-07T05:31:56Z"
},
"own_brand_state": "not_resolved",
"own_brand_classified_ads": 0,
"dominant_industry": "<string>"
}{
"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
Body
One Ad Board (client-curated AD set) to aggregate.
Boards live in the browser's localStorage, so the client posts the ad-id
set exactly as Tracked Brands groups post advertiser ids. max_length
mirrors board_insights_service.BOARD_INSIGHTS_MAX_ADS.
Response
Successful Response
Full-history rollups over ALL of an advertiser's stored ads.
Server-computed so the Full Brand Page shows true totals — the previous
client-side derivation only saw the capped recent_ads window, which
made "first ad seen" and every distribution chip wrong for any advertiser
with more than one page of ads. Bucket semantics mirror the Explore
surfaces: platforms uses the same Meta publisher-platform expansion as
the pill counts, landing_domains the same domain normalization as the
landing_domain filter.
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Per-brand slice of a group aggregate (chart rows, not the tracker grid).
Show child attributes
Show child attributes
measured, not_resolved, no_ads, below_minimum Was this page helpful?