Skip to main content
GET
/
reference
/
content-intelligence-types
List content intelligence types
curl --request GET \
  --url https://api.app.hrizn.io/v1/public/reference/content-intelligence-types \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "content_intelligence_types": [
      {
        "type": "missing_model_page",
        "description": "A vehicle model in inventory has no dedicated research/landing page",
        "actionable_via": "POST /model-landing-pages"
      },
      {
        "type": "comparison_opportunity",
        "description": "Two or more cross-shopped vehicles can be compared in a head-to-head article",
        "actionable_via": "POST /comparisons"
      },
      {
        "type": "ideacloud_content",
        "description": "An existing IdeaCloud has unanswered questions that could become new content",
        "actionable_via": "POST /ideaclouds"
      }
    ]
  }
}
Returns all recommendation types generated by the content intelligence pipeline, with a description of each type and the API endpoint to use for acting on it.
TypeDescriptionActionable via
missing_model_pageA vehicle model in inventory has no dedicated research/landing pagePOST /model-landing-pages
comparison_opportunityTwo or more cross-shopped vehicles can be comparedPOST /comparisons
ideacloud_contentAn existing IdeaCloud has unanswered questions that could become contentPOST /ideaclouds
ideacloud_questionA specific unanswered question in an IdeaCloud can become targeted contentPOST /ideaclouds
content_refreshAn existing article is declining in traffic and should be refreshedPOST /content/{id}/generate
trending_topicA topic is trending in search data and has no coveragePOST /ideaclouds
search_gapA high-impression search query has no matching contentPOST /ideaclouds
seasonal_contentA seasonal topic is timely and relevant for the current periodPOST /ideaclouds
network_benchmarkPeer dealerships have content coverage that this site is missingPOST /ideaclouds
network_winning_patternA content pattern is performing well across the peer networkPOST /ideaclouds
inventory_moveA vehicle in inventory needs content attention — aging stock, high volume, or price segmentPOST /model-landing-pages
price_segment_contentA price segment has no targeted contentPOST /ideaclouds
search_position_opportunityA query ranking on page 2 could move to page 1POST /ideaclouds
keyword_cannibalizationMultiple pages compete for the same keywordPOST /ideaclouds
model_year_transitionA new model year is arriving and needs updated contentPOST /model-landing-pages
oem_eventAn OEM-sponsored campaign or incentive event is availablePOST /sales-events
local_eventA local community event is an opportunity for contentPOST /sales-events
seasonal_eventA seasonal sales event should be promotedPOST /sales-events
community_eventA community-focused event can drive local engagementPOST /sales-events
model_launch_eventA new model launch event is an opportunity for promotionPOST /sales-events
recall_contentAn NHTSA recall for a vehicle in inventory can become safety contentPOST /ideaclouds
service_contentA service interval milestone for a popular model can become maintenance contentPOST /ideaclouds
{
  "data": {
    "content_intelligence_types": [
      {
        "type": "missing_model_page",
        "description": "A vehicle model in inventory has no dedicated research/landing page",
        "actionable_via": "POST /model-landing-pages"
      },
      {
        "type": "comparison_opportunity",
        "description": "Two or more cross-shopped vehicles can be compared in a head-to-head article",
        "actionable_via": "POST /comparisons"
      },
      {
        "type": "ideacloud_content",
        "description": "An existing IdeaCloud has unanswered questions that could become new content",
        "actionable_via": "POST /ideaclouds"
      }
    ]
  }
}
The actionable_via field indicates which existing API endpoint to call to act on a recommendation of this type. Use the recommendation’s metadata to populate the request body. See the Content Intelligence guide for a full workflow walkthrough.

Authorizations

X-API-Key
string
header
required

Your Hrizn API key (prefix hzk_)

Response

All content intelligence types

data
object
Last modified on March 12, 2026