Get summary
curl --request GET \
--url https://api.app.hrizn.io/v1/public/content-intelligence/summary \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/content-intelligence/summary"
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/content-intelligence/summary', 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/content-intelligence/summary', 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/content-intelligence/summary",
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": {
"total": {
"active": 47,
"dismissed": 12,
"acted_on": 23,
"expired": 156
},
"priority": {
"high": 8,
"medium": 21,
"low": 18
},
"by_type": {
"missing_model_page": 5,
"comparison_opportunity": 8,
"search_gap": 12,
"trending_topic": 4,
"content_refresh": 3,
"seasonal_content": 2,
"model_year_transition": 3,
"network_benchmark": 6,
"inventory_move": 4
}
}
}
Get summary
Get aggregate counts of content intelligence recommendations
GET
/
content-intelligence
/
summary
Get summary
curl --request GET \
--url https://api.app.hrizn.io/v1/public/content-intelligence/summary \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/content-intelligence/summary"
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/content-intelligence/summary', 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/content-intelligence/summary', 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/content-intelligence/summary",
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": {
"total": {
"active": 47,
"dismissed": 12,
"acted_on": 23,
"expired": 156
},
"priority": {
"high": 8,
"medium": 21,
"low": 18
},
"by_type": {
"missing_model_page": 5,
"comparison_opportunity": 8,
"search_gap": 12,
"trending_topic": 4,
"content_refresh": 3,
"seasonal_content": 2,
"model_year_transition": 3,
"network_benchmark": 6,
"inventory_move": 4
}
}
}
Returns a summary of content intelligence recommendations for the site, broken down by status, priority tier, and recommendation type. Useful for dashboards and monitoring.
Scope required:
content_intelligence:read
{
"data": {
"total": {
"active": 47,
"dismissed": 12,
"acted_on": 23,
"expired": 156
},
"priority": {
"high": 8,
"medium": 21,
"low": 18
},
"by_type": {
"missing_model_page": 5,
"comparison_opportunity": 8,
"search_gap": 12,
"trending_topic": 4,
"content_refresh": 3,
"seasonal_content": 2,
"model_year_transition": 3,
"network_benchmark": 6,
"inventory_move": 4
}
}
}
Priority tiers are defined as: High (score >= 80), Medium (score 60-79), Low (score < 60). The
by_type counts only include active recommendations.Authorizations
Your Hrizn API key (prefix hzk_)
Response
Summary of recommendations
Hide child attributes
Hide child attributes
Last modified on March 15, 2026
⌘I
