Skip to main content
GET
/
content
List content
curl --request GET \
  --url https://api.app.hrizn.io/v1/public/content \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "title": "<string>",
      "article_type": "basic",
      "status": "generating",
      "category": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>"
      },
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "content_intent": "<string>",
      "target_audience": "<string>",
      "funnel_stage": "<string>",
      "content_lifespan": "<string>",
      "search_intent_type": "<string>"
    }
  ],
  "pagination": {
    "has_more": true,
    "next_cursor": "<string>",
    "total_count": 123
  }
}

Authorizations

X-API-Key
string
header
required

Your Hrizn API key (prefix hzk_)

Query Parameters

limit
integer
default:25

Number of results per page

Required range: 1 <= x <= 100
cursor
string

Base64-encoded pagination cursor

article_type
enum<string>

Filter by article type

Available options:
basic,
qa,
expert,
modellanding,
comparison,
salesevent,
enhancedcontent,
emailtemplate
content_intent
string

Filter by content intent (fixed_ops, variable, general)

target_audience
string

Filter by target audience (in_market_buyer, service_customer, owner, general_public, enthusiast)

funnel_stage
string

Filter by funnel stage (awareness, consideration, decision, retention)

content_lifespan
string

Filter by content lifespan (evergreen, seasonal, time_bound)

search_intent_type
string

Filter by search intent type (informational, commercial, transactional, navigational)

Response

Paginated list of content

data
object[]
pagination
object
Last modified on April 13, 2026