Bidders - Brand service
Article 02/22/2024
3 contributors
Feedback
In this article
Use the read-only Brand Service to see what brands are registered in the Xandr system. You can also use the Brand Service to obtain the ID assigned to a certain brand. This ID is used as an optional input for the Creative Service .
REST API
JSON fields
Field
Type
Description
category_id
int
The ID of the category associated with this brand - see Category Service .
company_id
int
This field is not currently used.
id
int
The ID of the brand.
is_premium
bool
This field is not currently used.
last_activity
string
When the brand was last modified.
name
string
Brand name.
num_creatives
int
Number of active, serveable creatives with this brand that are registered with Xandr.
url
string
URL for this brand. This field has been deprecated in favor or the urls field (below).
urls
string array
URLs associated with this brand.
Example
View all brands (below output is truncated)
curl -b cookies -c cookies "https://api.adnxs.com/brand"
{
"response":{
"status":"OK",
"brands":[
{
"last_activity" : "2009-01-02 19:53:15",
"urls" : ["weightwatchers.com"],
"name" : "Weight Watchers",
"id" : 154,
"num_creatives" : 10,
"category_id" : 14
},
{
"last_activity" : "2009-01-02 19:53:16",
"urls" : ["yahoo.com"],
"name" : "Yahoo",
"id" : 15,
"num_creatives" : 50,
"category_id" : 15
},
....
]
}
}