Retailers
- A retailer carries a selection of products from multiple brands
- Retailers represent publishers that hold advertising inventory for brands to advertise on
- An account may have access to one or more retailers, typically managed by Criteo
Endpoint
GET /accounts/{accountId}/retailers
Get All Retailers
Retailer Attributes
Attribute | Description | Values |
---|---|---|
| Retailer ID | int64 |
| Retailer name | 100 char limit |
Get All Retailers
This endpoint lists all retailers that carry the brands associated with an account. Response results will be provided in paginated form

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