> ## 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.

# Get content details



## OpenAPI

````yaml /openapi.yaml get /content/{id}
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:
  /content/{id}:
    get:
      tags:
        - Content
      summary: Get content details
      operationId: getContent
      parameters:
        - $ref: '#/components/parameters/ContentId'
      responses:
        '200':
          description: Content details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ArticleDetailResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalError'
components:
  parameters:
    ContentId:
      name: id
      in: path
      required: true
      schema:
        type: string
        format: uuid
      description: Content ID
  schemas:
    ArticleDetailResponse:
      type: object
      properties:
        data:
          type: object
          properties:
            id:
              type: string
              format: uuid
            title:
              type: string
            article_type:
              $ref: '#/components/schemas/ArticleType'
            status:
              $ref: '#/components/schemas/ContentStatus'
            category:
              $ref: '#/components/schemas/CategoryObject'
            ideacloud:
              $ref: '#/components/schemas/IdeaCloudSummaryObject'
            metadata:
              type: object
              description: >
                Flexible metadata object. For API-created content, includes
                `source` ("public_api"), `api_key_id`, and `api_creator_label`.
                May also include `tone`, `language`, and other generation
                parameters. Visual builder content includes `outputFormat`
                ("standard" or "visual") and optionally `visualDesignMode`
                ("template", "custom", or "user-template").
              properties:
                source:
                  type: string
                  description: Origin of content creation (e.g. "public_api")
                  nullable: true
                api_key_id:
                  type: string
                  description: ID of the API key used to create the content
                  nullable: true
                api_creator_label:
                  type: string
                  description: >-
                    Display label for the API key owner (e.g. "API - John Doe
                    (john@example.com)")
                  nullable: true
                outputFormat:
                  type: string
                  enum:
                    - standard
                    - visual
                  description: >-
                    Whether the content was generated as standard markdown or as
                    a visual layout
                  nullable: true
                visualDesignMode:
                  type: string
                  enum:
                    - template
                    - custom
                    - user-template
                  description: >-
                    Design mode used for visual content (only present when
                    outputFormat is "visual")
                  nullable: true
              additionalProperties: true
            components:
              type: array
              items:
                type: object
                properties:
                  type:
                    $ref: '#/components/schemas/ComponentType'
                  status:
                    type: string
                  updated_at:
                    type: string
                    format: date-time
            created_at:
              type: string
              format: date-time
            updated_at:
              type: string
              format: date-time
            content_intent:
              type: string
              nullable: true
              description: Content intent classification (fixed_ops, variable, general)
            target_audience:
              type: string
              nullable: true
              description: >-
                Target audience (in_market_buyer, service_customer, owner,
                general_public, enthusiast)
            funnel_stage:
              type: string
              nullable: true
              description: >-
                Buyer journey funnel stage (awareness, consideration, decision,
                retention)
            content_lifespan:
              type: string
              nullable: true
              description: Content lifespan type (evergreen, seasonal, time_bound)
            search_intent_type:
              type: string
              nullable: true
              description: >-
                Search intent type (informational, commercial, transactional,
                navigational)
    ArticleType:
      type: string
      enum:
        - basic
        - qa
        - expert
        - modellanding
        - comparison
        - salesevent
    ContentStatus:
      type: string
      enum:
        - generating
        - complete
        - failed
      description: Content generation status
    CategoryObject:
      type: object
      nullable: true
      description: Category assigned to this resource, or null if none.
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
    IdeaCloudSummaryObject:
      type: object
      nullable: true
      description: IdeaCloud that generated this content, or null if not applicable.
      properties:
        id:
          type: string
          format: uuid
        keyword:
          type: string
    ComponentType:
      type: string
      description: >
        Component type identifier (camelCase). The path parameter is
        case-insensitive (e.g. `body`, `Body`, and `BODY` all work), but the API
        returns the canonical camelCase form in responses.
      enum:
        - body
        - seoMetadata
        - pageSlugs
        - postTags
        - blogCategories
        - searchIntent
        - facebookSnip
        - twitterSnip
        - instagramSnip
        - googleBusinessSnip
        - videoScript
        - articleSchema
        - authorSchema
        - organizationSchema
        - vehicleListingSchema
        - faqSchema
        - eventSchema
        - qaPageSchema
        - layout_html
    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'
    NotFound:
      description: Resource not found
      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_)

````