Get recommendation
curl --request GET \
--url https://api.app.hrizn.io/v1/public/content-intelligence/{id} \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/content-intelligence/{id}"
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/{id}', 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/{id}', 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/{id}",
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": {
"id": "c3a1f8b2-7e4d-4a9c-b5e6-1234567890ab",
"suggestion_type": "missing_model_page",
"comparison_subtype": null,
"title": "Create a 2026 Toyota Camry model page",
"description": "The 2026 Toyota Camry has 14 units in inventory but no dedicated model research page. Creating one could capture high-intent search traffic.",
"priority_score": 92,
"metadata": {
"make": "Toyota",
"model": "Camry",
"year": 2026,
"inventory_count": 14,
"estimated_monthly_searches": 8400
},
"suggested_article_type": "modellanding",
"status": "active",
"created_at": "2026-03-01T04:00:00.000Z",
"expires_at": "2026-03-31T04:00:00.000Z"
}
}
Get recommendation
Get details of a specific content intelligence recommendation
GET
/
content-intelligence
/
{id}
Get recommendation
curl --request GET \
--url https://api.app.hrizn.io/v1/public/content-intelligence/{id} \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.app.hrizn.io/v1/public/content-intelligence/{id}"
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/{id}', 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/{id}', 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/{id}",
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": {
"id": "c3a1f8b2-7e4d-4a9c-b5e6-1234567890ab",
"suggestion_type": "missing_model_page",
"comparison_subtype": null,
"title": "Create a 2026 Toyota Camry model page",
"description": "The 2026 Toyota Camry has 14 units in inventory but no dedicated model research page. Creating one could capture high-intent search traffic.",
"priority_score": 92,
"metadata": {
"make": "Toyota",
"model": "Camry",
"year": 2026,
"inventory_count": 14,
"estimated_monthly_searches": 8400
},
"suggested_article_type": "modellanding",
"status": "active",
"created_at": "2026-03-01T04:00:00.000Z",
"expires_at": "2026-03-31T04:00:00.000Z"
}
}
Returns a single content intelligence recommendation by ID.
Scope required:
content_intelligence:read
Path parameters
UUID of the content intelligence recommendation.
{
"data": {
"id": "c3a1f8b2-7e4d-4a9c-b5e6-1234567890ab",
"suggestion_type": "missing_model_page",
"comparison_subtype": null,
"title": "Create a 2026 Toyota Camry model page",
"description": "The 2026 Toyota Camry has 14 units in inventory but no dedicated model research page. Creating one could capture high-intent search traffic.",
"priority_score": 92,
"metadata": {
"make": "Toyota",
"model": "Camry",
"year": 2026,
"inventory_count": 14,
"estimated_monthly_searches": 8400
},
"suggested_article_type": "modellanding",
"status": "active",
"created_at": "2026-03-01T04:00:00.000Z",
"expires_at": "2026-03-31T04:00:00.000Z"
}
}
Authorizations
Your Hrizn API key (prefix hzk_)
Path Parameters
Content intelligence recommendation ID
Response
Recommendation details
Hide child attributes
Hide child attributes
Type of recommendation (e.g. missing_model_page, comparison_opportunity)
For comparison_opportunity type only: cross_brand, trim, or cross_category
Human-readable recommendation title
Detailed description of the content opportunity
Priority from 0-100. Higher scores indicate more impactful content opportunities.
Required range:
0 <= x <= 100Type-specific data such as vehicle make/model/year, traffic estimates, competitor info. Shape varies by suggestion_type.
Recommended content type: basic, modellanding, comparison, salesevent, etc.
Available options:
active, dismissed, acted_on, expired Last modified on March 15, 2026
⌘I
