Brands
- A brand is a collection of products marketed & sold under the same umbrella name
- Brands associated with the account determine the products available for an account to promote on retailer sites
- An account may have access to one or more brands, typically managed by Criteo
- Brand attributes are standardized across retailers
Endpoint
GET /accounts/{accountId}/brands
Get Accounts
Brand Attributes
Attribute | Description | Values |
---|---|---|
| Brand ID | int64 |
| Brand name | 510 char limit |
Get All Brands
This endpoint lists all brands associated with an account. Results are paginated.

https://api.criteo.com/2022-04/retail-media/accounts/{accountId}/brands
Sample Request
curl -X GET "https://api.criteo.com/2022-04/retail-media/accounts/18446744073709551616/brands" \
-H "Authorization: Bearer myaccesstoken"
Sample Response
// Sample Response
{
"data": [
{
"type": "RetailMediaBrand",
"id": "7672171780147256541",
"attributes": {
"name": "Brand 123"
}
},
// ...
{
"type": "RetailMediaBrand",
"id": "5979998329674492121",
"attributes": {
"name": "Brand 789"
}
}
],
"metadata": {
"totalItemsAcrossAllPages": 15,
"currentPageSize": 25,
"currentPageIndex": 0,
"totalPages": 1,
"nextPage": null,
"previousPage": null
}
}
Updated about 1 month ago
Did this page help you?