> ## Documentation Index
> Fetch the complete documentation index at: https://api-docs.hrizn.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Create IdeaClouds (batch)

> Create up to 25 IdeaClouds in a single request

Submit multiple keywords for research in one request. Each item is processed independently.

**Scope required:** `ideaclouds:write`

## Request body

<ParamField body="items" type="array" required>
  Array of IdeaCloud creation objects (max 25).

  <Expandable title="Item properties">
    <ParamField body="keyword" type="string" required>
      The keyword or topic to research.
    </ParamField>

    <ParamField body="category_id" type="string">
      Optional category UUID.
    </ParamField>
  </Expandable>
</ParamField>

## Response

Returns `202 Accepted` with status for each item.

<ResponseExample>
  ```json 202 theme={"theme":{"light":"github-light","dark":"github-dark"}}
  {
    "data": {
      "items": [
        {
          "id": "0b3252dd-d82c-4dab-9656-c6095163bb30",
          "keyword": "best SUVs for families 2026",
          "status": "researching"
        },
        {
          "id": "edc2bcc6-88d5-46d2-94cb-009236562b7e",
          "keyword": "Chevrolet Silverado towing capacity guide",
          "status": "researching"
        }
      ],
      "message": "Generation typically completes within a few minutes. Configure webhooks to receive real-time status notifications: https://api-docs.hrizn.io/webhooks"
    }
  }
  ```
</ResponseExample>

<Tip>
  IdeaCloud research is asynchronous and typically completes within a few minutes. Configure [webhooks](/webhooks) to receive real-time `ideacloud.completed` and `ideacloud.failed` notifications instead of polling.
</Tip>


## OpenAPI

````yaml POST /ideaclouds/batch
openapi: 3.1.0
info:
  title: Hrizn Public API
  version: 1.2.0
  description: >
    The Hrizn Public API allows partners to programmatically create content,
    manage inventory descriptions, and integrate with the Hrizn platform.


    All endpoints are prefixed with `/public` and require an API key passed via
    the `X-API-Key` header (except the health check).
  contact:
    email: support@hrizn.io
servers:
  - url: https://api.app.hrizn.io/v1/public
    description: Production
security:
  - apiKeyAuth: []
tags:
  - name: IdeaClouds
    description: Create and manage AI-powered keyword research
  - name: Content Intelligence
    description: AI-powered content gap analysis and recommendations
  - name: Content
    description: Generate content from IdeaClouds
  - name: Compliance
    description: Run OEM compliance checks on content
  - name: Content Tools
    description: Generate SEO metadata, schemas, and social snippets
  - name: Inventory
    description: Access vehicle data and AI descriptions
  - name: Site
    description: View dealership details and configuration
  - name: Webhooks
    description: Manage webhook subscriptions for real-time events
  - name: Reference
    description: Look up available types, scopes, and events
  - name: Social
    description: >-
      Zernio-backed social posting and reviews across all connected platforms
      (X, Facebook, Instagram, LinkedIn, Google Business Profile)
  - name: Health
    description: Health check (no authentication)
paths:
  /ideaclouds/batch:
    post:
      tags:
        - IdeaClouds
      summary: Create IdeaClouds in batch
      description: Creates multiple IdeaClouds in a single request (1-25 items).
      operationId: createIdeaCloudBatch
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateIdeaCloudBatchInput'
      responses:
        '202':
          description: Batch accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IdeaCloudBatchResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '429':
          $ref: '#/components/responses/RateLimited'
        '500':
          $ref: '#/components/responses/InternalError'
components:
  schemas:
    CreateIdeaCloudBatchInput:
      type: object
      required:
        - items
      properties:
        items:
          type: array
          minItems: 1
          maxItems: 25
          items:
            $ref: '#/components/schemas/CreateIdeaCloudInput'
    IdeaCloudBatchResponse:
      type: object
      properties:
        data:
          type: object
          properties:
            items:
              type: array
              items:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                  keyword:
                    type: string
                  status:
                    type: string
                  error:
                    type: string
            message:
              type: string
              description: >-
                Informational message about async processing and webhook
                configuration
    CreateIdeaCloudInput:
      type: object
      required:
        - keyword
      properties:
        keyword:
          type: string
          minLength: 1
          maxLength: 500
          description: Keyword or topic to research
        category_id:
          type: string
          format: uuid
          description: Optional category UUID
    ErrorResponse:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              example: validation_error
            message:
              type: string
              example: 'keyword: Required'
            details:
              type: object
            request_id:
              type: string
  responses:
    BadRequest:
      description: Validation error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    Forbidden:
      description: API key lacks required scope
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    RateLimited:
      description: Rate limit exceeded
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    InternalError:
      description: Internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: Your Hrizn API key (prefix hzk_)

````