Skip to main content
POST
/
ideaclouds
/
batch
Create IdeaClouds in batch
curl --request POST \
  --url https://api.app.hrizn.io/v1/public/ideaclouds/batch \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "items": [
    {
      "keyword": "<string>",
      "category_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ]
}
'
{
  "data": {
    "items": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "keyword": "<string>",
        "status": "<string>",
        "error": "<string>"
      }
    ],
    "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 - 25 elements

Response

Batch accepted

data
object
Last modified on February 28, 2026