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

# Generate Video

> Create AI-generated videos for your posts.



## OpenAPI

````yaml POST /generate-video
openapi: 3.1.0
info:
  title: PostQueen Public API
  description: >-
    API for managing social media posts, integrations, and media uploads in
    PostQueen.


    ## Authentication


    All endpoints require an API key passed in the `Authorization` header:


    ```

    Authorization: your-api-key

    ```


    Get your API key from PostQueen Settings.


    ## Rate Limits


    The create-post endpoint is capped per organization per hour. With
    `API_LIMIT` unset the ceiling is **90 requests per hour**; the shipped
    Compose files and PostQueen Cloud both set it to **30**. No other endpoint
    is throttled.


    ## Terminology


    The UI uses `channel`, but the API uses `integration`. They refer to the
    same thing.


    ## Supported Platforms (34)


    **Social Platforms:** X (Twitter), LinkedIn, LinkedIn Page, Facebook,
    Instagram, Instagram Standalone, Threads, Bluesky, Mastodon, Warpcast
    (Farcaster), Nostr, VK


    **Video Platforms:** YouTube, TikTok


    **Community Platforms:** Reddit, Lemmy, Discord, Slack, Telegram, Kick,
    Twitch


    **Design Platforms:** Pinterest, Dribbble


    **Blogging Platforms:** Medium, Dev.to, Hashnode, WordPress, Moltbook


    **Business:** Google My Business (GMB), Listmonk (newsletters), Whop, Skool
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.postqueen.ai/public/v1
    description: PostQueen Cloud
  - url: https://{host}/api/public/v1
    description: Self-hosted
    variables:
      host:
        default: localhost:4007
        description: Your PostQueen instance domain
security:
  - ApiKeyAuth: []
tags:
  - name: Integrations
    description: Manage connected social media channels
  - name: Posts
    description: Create, list, and delete posts
  - name: Uploads
    description: Upload media files
  - name: Notifications
    description: View organization notifications
  - name: Analytics
    description: View analytics for integrations and posts
  - name: Video Generation
    description: Generate videos with AI
  - name: OAuth
    description: Authorize third-party apps and exchange codes for access tokens
paths:
  /generate-video:
    post:
      tags:
        - Video Generation
      summary: Generate a video
      description: Create AI-generated videos for your posts.
      operationId: generateVideo
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VideoGenerationRequest'
            examples:
              image-text-slides:
                summary: Image Text Slides
                value:
                  type: image-text-slides
                  output: vertical
                  customParams:
                    voice: elevenlabs-voice-id
                    prompt: Description of the video content
              veo3:
                summary: VEO3 Fast Video
                value:
                  type: veo3
                  output: vertical
                  customParams:
                    prompt: A scenic view of mountains at sunset
                    images: []
      responses:
        '200':
          description: Video generated successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                    path:
                      type: string
                      description: URL of the generated video
components:
  schemas:
    VideoGenerationRequest:
      type: object
      required:
        - type
        - output
        - customParams
      properties:
        type:
          type: string
          enum:
            - image-text-slides
            - veo3
          description: Video generation type
        output:
          type: string
          enum:
            - vertical
            - horizontal
          description: Video orientation
        customParams:
          type: object
          properties:
            voice:
              type: string
              description: ElevenLabs voice ID (for image-text-slides)
            prompt:
              type: string
              description: Description/script for the video
            images:
              type: array
              maxItems: 3
              items:
                $ref: '#/components/schemas/Media'
              description: Reference images (for veo3, max 3)
    Media:
      type: object
      required:
        - id
        - path
      properties:
        id:
          type: string
        path:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Your PostQueen API key

````