Skip to main content
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>'
{
  "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

X-API-Key
string
header
required

Your Hrizn API key (prefix hzk_)

Response

Summary of recommendations

data
object
Last modified on March 12, 2026