> ## Documentation Index
> Fetch the complete documentation index at: https://developers.octaviatech.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Repurpose Content with Streaming

> Repurpose Content with Streaming.



## OpenAPI

````yaml POST /ai/repurpose/stream
openapi: 3.1.0
info:
  title: Blog API
  version: 1.0.0
servers:
  - url: https://api.octaviatech.app/cms
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Tags
    description: Tag management endpoints
paths:
  /ai/repurpose/stream:
    post:
      tags:
        - AI
      summary: Repurpose article/text for social platforms with SSE
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              oneOf:
                - required:
                    - articleId
                - required:
                    - text
              properties:
                articleId:
                  type: string
                text:
                  type: string
                platforms:
                  type: array
                  items:
                    type: string
                    enum:
                      - linkedin
                      - twitter
                      - telegram
                      - instagram
                language:
                  type: string
                tone:
                  type: string
                  enum:
                    - professional
                    - friendly
                    - casual
                    - technical
                length:
                  type: string
                  enum:
                    - short
                    - medium
                    - long
      responses:
        '200':
          description: Server-Sent Events stream (start/progress/content_chunk/complete)
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````