List brand voices
curl --request GET \
--url https://api.app.hrizn.io/v1/public/site/brand-voices \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/site/brand-voices"
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/brand-voices', 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/brand-voices', 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/brand-voices",
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": {
"brand_voices": [
{
"id": "profile-1751473166161",
"name": "Empire Chevrolet of Huntington Primary Brand Voice",
"tone": "Innovative and Forward-thinking, Authentic, Approachable, Down-to-earth, Friendly, Conversational, Casual, Informative, Straightforward, Community-focused, Customer-focused, Local, Honest, Respectful, Trustworthy, Traditional, Transparent, Reliable",
"target_audience": "Empire Chevrolet of Huntington's typical customer is aged 35 to 55, primarily Gen X and older Millennials...",
"created_at": "2025-07-02T16:19:26.161Z"
},
{
"id": "profile-1751642374259",
"name": "Z-71 Off Road Brand Voice",
"tone": "Professional and Authoritative",
"target_audience": "Z-71 Buyer Profile: Age Range: Typically 30-55 years old...",
"created_at": "2025-07-04T15:19:34.259Z"
}
]
}
}
Get brand voices
List brand voices available for this site
GET
/
site
/
brand-voices
List brand voices
curl --request GET \
--url https://api.app.hrizn.io/v1/public/site/brand-voices \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/site/brand-voices"
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/brand-voices', 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/brand-voices', 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/brand-voices",
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": {
"brand_voices": [
{
"id": "profile-1751473166161",
"name": "Empire Chevrolet of Huntington Primary Brand Voice",
"tone": "Innovative and Forward-thinking, Authentic, Approachable, Down-to-earth, Friendly, Conversational, Casual, Informative, Straightforward, Community-focused, Customer-focused, Local, Honest, Respectful, Trustworthy, Traditional, Transparent, Reliable",
"target_audience": "Empire Chevrolet of Huntington's typical customer is aged 35 to 55, primarily Gen X and older Millennials...",
"created_at": "2025-07-02T16:19:26.161Z"
},
{
"id": "profile-1751642374259",
"name": "Z-71 Off Road Brand Voice",
"tone": "Professional and Authoritative",
"target_audience": "Z-71 Buyer Profile: Age Range: Typically 30-55 years old...",
"created_at": "2025-07-04T15:19:34.259Z"
}
]
}
}
Returns brand voices configured for this site. Brand voices control the tone and style of generated content.
Scope required:
site:read
{
"data": {
"brand_voices": [
{
"id": "profile-1751473166161",
"name": "Empire Chevrolet of Huntington Primary Brand Voice",
"tone": "Innovative and Forward-thinking, Authentic, Approachable, Down-to-earth, Friendly, Conversational, Casual, Informative, Straightforward, Community-focused, Customer-focused, Local, Honest, Respectful, Trustworthy, Traditional, Transparent, Reliable",
"target_audience": "Empire Chevrolet of Huntington's typical customer is aged 35 to 55, primarily Gen X and older Millennials...",
"created_at": "2025-07-02T16:19:26.161Z"
},
{
"id": "profile-1751642374259",
"name": "Z-71 Off Road Brand Voice",
"tone": "Professional and Authoritative",
"target_audience": "Z-71 Buyer Profile: Age Range: Typically 30-55 years old...",
"created_at": "2025-07-04T15:19:34.259Z"
}
]
}
}
Brand voice IDs use the format
profile-{timestamp} (e.g. profile-1750950955073), not UUIDs. Use these IDs as-is when passing brand_voice_id to content creation endpoints.Authorizations
Your Hrizn API key (prefix hzk_)
Response
Brand voices
Hide child attributes
Hide child attributes
Last modified on February 28, 2026
⌘I
