/2026-01/retail-media/accounts/{account-id}/creatives - Criteo Docs
Fetch Creatives
Use the following API call to retrieve the creatives for a specified account.
Endpoint
GET /2026-01/retail-media/accounts/{account-id}/creatives
cURL Example
curl --request GET \
--url https://api.criteo.com/2026-01/retail-media/accounts/{account-id}/creatives \
--header 'Authorization: Bearer <token>'
Python Example
import requests
url = "https://api.criteo.com/2026-01/retail-media/accounts/{account-id}/creatives"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)
JavaScript (Fetch) Example
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.criteo.com/2026-01/retail-media/accounts/{account-id}/creatives', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
PHP Example
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.criteo.com/2026-01/retail-media/accounts/{account-id}/creatives",
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;
}
Go Example
package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.criteo.com/2026-01/retail-media/accounts/{account-id}/creatives"
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))
}
Response Format
HTTP 200
{
"data": [
{
"attributes": {
"name": "<string>",
"retailerId": 123,
"associatedLineItemIds": [
"<string>"
],
"brandId": 123,
"id": "<string>",
"updatedAt": "2023-11-07T05:31:56Z"
},
"id": "<string>",
"type": "<string>"
}
],
"errors": [
{
"code": "<string>",
"detail": "<string>",
"instance": "<string>",
"source": {},
"stackTrace": "<string>",
"title": "<string>",
"traceId": "<string>",
"traceIdentifier": "<string>"
}
],
"warnings": [
{
"code": "<string>",
"detail": "<string>",
"instance": "<string>",
"source": {},
"stackTrace": "<string>",
"title": "<string>",
"traceId": "<string>",
"traceIdentifier": "<string>"
}
]
}
Authorizations
- Authorization: Required. The access token received from the authorization server in the OAuth 2.0 flow.
Path Parameters
- account-id: Required. External account id to retrieve creatives for.