The Hrizn Public API enables partners and integrators to build powerful automations around the Hrizn content platform. Create IdeaClouds, generate content, run compliance checks, manage inventory descriptions, and receive real-time webhook notifications.
Quickstart
Get up and running in 5 minutes with your first API call.
Authentication
Learn how to create and manage API keys.
API Reference
Browse the full endpoint reference.
Webhooks
Receive real-time notifications when content is ready.
The API follows a research-first workflow. Every piece of content starts with an IdeaCloud that gathers questions and clusters them by intent, then flows through generation, quality checks, and enrichment.
GET /content/{id}/htmlGET /content/{id}/components
A production integration typically adds webhooks, compliance, and content tools:
1
Register Webhooks
Subscribe to ideacloud.completed, content.progress, and content.completed events so you don’t have to poll.
2
Create an IdeaCloud
POST /ideaclouds returns 202 Accepted. Wait for the ideacloud.completed webhook.
3
Generate Content
POST /content with auto_compliance: true and auto_content_tools: true. Monitor content.progress webhooks for real-time stage updates.
4
Handle Completion
When content.completed fires, retrieve GET /content/{id}/html for the article and GET /content/{id}/components for SEO metadata, schemas, and social snippets.
5
Publish
Push the HTML and structured data to your CMS. The components endpoint returns everything you need: body, meta title, meta description, JSON-LD, FAQs, and more.
Instead of polling for status, set up webhooks to receive push notifications when IdeaClouds and content are ready. This is the recommended approach for production integrations.