List marketing artifacts
curl --request GET \
--url https://api.app.hrizn.io/v1/public/site/marketing \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/site/marketing"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.app.hrizn.io/v1/public/site/marketing', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.app.hrizn.io/v1/public/site/marketing', 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.app.hrizn.io/v1/public/site/marketing",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}{
"data": {
"marketing": [
{
"id": "b2f95b26-ecc7-436c-86b4-9bd0e3694d88",
"type": "evergreen",
"description": "2 Oil Change and Tire Rotations for $144.00 up to 7 quarts, (Diesel Excluded)",
"created_at": "2025-08-01T17:21:52.492779+00:00",
"updated_at": "2025-08-01T17:21:52.492779+00:00"
},
{
"id": "14139f00-b281-4dc1-9f3b-c7bbcae7a24f",
"type": "why_buys",
"description": "Buying a new or pre-owned vehicle is as easy as heading to Empire Chevrolet of Huntington...",
"created_at": "2025-05-26T16:43:33.78039+00:00",
"updated_at": "2025-05-26T16:43:33.78039+00:00"
}
]
}
}
Get marketing artifacts
Returns all marketing artifacts configured for the site
GET
/
site
/
marketing
List marketing artifacts
curl --request GET \
--url https://api.app.hrizn.io/v1/public/site/marketing \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/site/marketing"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.app.hrizn.io/v1/public/site/marketing', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.app.hrizn.io/v1/public/site/marketing', 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.app.hrizn.io/v1/public/site/marketing",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}{
"data": {
"marketing": [
{
"id": "b2f95b26-ecc7-436c-86b4-9bd0e3694d88",
"type": "evergreen",
"description": "2 Oil Change and Tire Rotations for $144.00 up to 7 quarts, (Diesel Excluded)",
"created_at": "2025-08-01T17:21:52.492779+00:00",
"updated_at": "2025-08-01T17:21:52.492779+00:00"
},
{
"id": "14139f00-b281-4dc1-9f3b-c7bbcae7a24f",
"type": "why_buys",
"description": "Buying a new or pre-owned vehicle is as easy as heading to Empire Chevrolet of Huntington...",
"created_at": "2025-05-26T16:43:33.78039+00:00",
"updated_at": "2025-05-26T16:43:33.78039+00:00"
}
]
}
}
Returns all marketing artifacts (evergreen messages, why-buy reasons, and custom USPs). These are used by the AI to weave dealership-specific selling points into generated content.
Scope required:
site:read
{
"data": {
"marketing": [
{
"id": "b2f95b26-ecc7-436c-86b4-9bd0e3694d88",
"type": "evergreen",
"description": "2 Oil Change and Tire Rotations for $144.00 up to 7 quarts, (Diesel Excluded)",
"created_at": "2025-08-01T17:21:52.492779+00:00",
"updated_at": "2025-08-01T17:21:52.492779+00:00"
},
{
"id": "14139f00-b281-4dc1-9f3b-c7bbcae7a24f",
"type": "why_buys",
"description": "Buying a new or pre-owned vehicle is as easy as heading to Empire Chevrolet of Huntington...",
"created_at": "2025-05-26T16:43:33.78039+00:00",
"updated_at": "2025-05-26T16:43:33.78039+00:00"
}
]
}
}
Returns an empty
marketing array if no marketing artifacts have been configured for the site.Authorizations
Your Hrizn API key (prefix hzk_)
Response
Marketing artifacts
Last modified on February 28, 2026
⌘I
