Skip to main content
POST
/
content
/
batch
Create content in batch
curl --request POST \
  --url https://api.app.hrizn.io/v1/public/content/batch \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "items": [
    {
      "ideacloud_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "article_type": "basic",
      "selected_question_ids": [
        "<string>"
      ],
      "brand_voice_id": "<string>",
      "title": "<string>",
      "auto_compliance": false,
      "auto_content_tools": false,
      "mode": "simple"
    }
  ]
}
'
{
  "data": {
    "items": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "status": "<string>",
        "article_type": "basic",
        "title": "<string>",
        "error": "<string>",
        "created_at": "2023-11-07T05:31:56Z"
      }
    ],
    "message": "<string>"
  }
}

Authorizations

X-API-Key
string
header
required

Your Hrizn API key (prefix hzk_)

Body

application/json
items
object[]
required
Required array length: 1 - 10 elements

Response

Batch accepted

data
object
Last modified on February 28, 2026