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

# Kling-V3-Turbo Text to Video

> - Kling-V3 Turbo Text to Video (kling-v3-turbo-text-to-video) model supports text-to-video generation
- Resolution supports 720P / 1080P (4K not supported), duration 3 ~ 15 seconds
- Supports single-shot and multi-shot modes (use the shot syntax in `prompt`)
- Asynchronous processing mode, use the returned task ID to [query status](/en/api-manual/task-management/get-task-detail)
- Generated video links are valid for 24 hours, please save them promptly



## OpenAPI

````yaml en/api-manual/video-series/kling/kling-v3-turbo-text-to-video.json POST /v1/videos/generations
openapi: 3.1.0
info:
  title: kling-v3-turbo-text-to-video API
  description: Create text-to-video tasks using AI models
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.evolink.ai
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Video Generation
    description: AI video generation APIs
paths:
  /v1/videos/generations:
    post:
      tags:
        - Video Generation
      summary: kling-v3-turbo-text-to-video API
      description: >-
        - Kling-V3 Turbo Text to Video (kling-v3-turbo-text-to-video) model
        supports text-to-video generation

        - Resolution supports 720P / 1080P (4K not supported), duration 3 ~ 15
        seconds

        - Supports single-shot and multi-shot modes (use the shot syntax in
        `prompt`)

        - Asynchronous processing mode, use the returned task ID to [query
        status](/en/api-manual/task-management/get-task-detail)

        - Generated video links are valid for 24 hours, please save them
        promptly
      operationId: createVideoGeneration
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VideoGenerationRequest'
            examples:
              basic:
                summary: Basic Text to Video
                value:
                  model: kling-v3-turbo-text-to-video
                  prompt: >-
                    A golden retriever running on a sunlit grass field,
                    cinematic slow motion
                  quality: 720p
                  aspect_ratio: '16:9'
                  duration: 5
              hd_1080p:
                summary: 1080P Portrait
                value:
                  model: kling-v3-turbo-text-to-video
                  prompt: Storm waves crashing against the reef, dark clouds rolling
                  quality: 1080p
                  aspect_ratio: '9:16'
                  duration: 10
              multi_shot:
                summary: Multi-shot (prompt shot syntax)
                value:
                  model: kling-v3-turbo-text-to-video
                  prompt: >-
                    镜头 1, 3, the girl walks toward the window; 镜头 2, 2, the
                    camera zooms into her profile;
                  quality: 1080p
                  aspect_ratio: '16:9'
                  duration: 5
      responses:
        '200':
          description: Video generation task created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VideoGenerationResponse'
        '400':
          description: Invalid request parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: invalid_request
                  message: Invalid request parameters
                  type: invalid_request_error
        '401':
          description: Unauthenticated, invalid or expired token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: unauthorized
                  message: Invalid or expired token
                  type: authentication_error
        '402':
          description: Insufficient quota, recharge required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: insufficient_quota
                  message: Insufficient quota. Please top up your account.
                  type: insufficient_quota
        '403':
          description: Access denied
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: model_access_denied
                  message: >-
                    Token does not have access to model:
                    kling-v3-turbo-text-to-video
                  type: invalid_request_error
        '429':
          description: Rate limit exceeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: rate_limit_exceeded
                  message: Too many requests, please try again later
                  type: rate_limit_error
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: internal_error
                  message: Internal server error
                  type: api_error
components:
  schemas:
    VideoGenerationRequest:
      type: object
      required:
        - model
        - prompt
      properties:
        model:
          type: string
          description: Video generation model name
          enum:
            - kling-v3-turbo-text-to-video
          default: kling-v3-turbo-text-to-video
          example: kling-v3-turbo-text-to-video
        prompt:
          type: string
          description: >-
            Text prompt describing what video to generate


            **Note:**

            - Recommended no more than `2500` characters

            - **Multi-shot (optional)**: use `镜头 n, m, words;` in the `prompt`
            to describe shots — `n` is the shot sequence number (up to `6`), `m`
            is the duration of that shot (the sum of all shot durations must
            equal the total duration), and `words` is the shot prompt (<= `512`
            characters). For example: `镜头 1, 3, the girl walks toward the
            window; 镜头 2, 2, the camera zooms into her profile;`
          example: >-
            A golden retriever running on a sunlit grass field, cinematic slow
            motion
          maxLength: 2500
        quality:
          type: string
          description: |-
            Resolution tier

            **Options:**
            - `720p`: Standard quality
            - `1080p`: High quality
            - `4k` not supported
          enum:
            - 720p
            - 1080p
          default: 720p
          example: 720p
        aspect_ratio:
          type: string
          description: |-
            Video aspect ratio

            **Options:**
            - `16:9`: Landscape video
            - `9:16`: Portrait video
            - `1:1`: Square video
          enum:
            - '16:9'
            - '9:16'
            - '1:1'
          default: '16:9'
          example: '16:9'
        duration:
          type: integer
          description: >-
            Video duration in seconds, defaults to `5` seconds


            **Note:**

            - Range: integer from `3` to `15`

            - Billing is based on the `duration` value, longer duration costs
            more
          minimum: 3
          maximum: 15
          default: 5
          example: 5
        callback_url:
          type: string
          description: >-
            HTTPS callback URL for task completion


            **Callback Timing:**

            - Triggered when task is completed, failed, or cancelled

            - Sent after billing confirmation


            **Security Restrictions:**

            - HTTPS protocol only

            - Internal IP addresses are prohibited (127.0.0.1, 10.x.x.x,
            172.16-31.x.x, 192.168.x.x, etc.)

            - URL length must not exceed `2048` characters


            **Callback Mechanism:**

            - Timeout: `10` seconds

            - Maximum `3` retries after failure (at `1`/`2`/`4` seconds after
            failure)

            - Callback response format is consistent with task query API

            - 2xx status code is considered successful, other codes trigger
            retry
          format: uri
          example: https://your-domain.com/webhooks/video-task-completed
    VideoGenerationResponse:
      type: object
      properties:
        created:
          type: integer
          description: Task creation timestamp
          example: 1757169743
        id:
          type: string
          description: Task ID
          example: task-unified-1757169743-7cvnl5zw
        model:
          type: string
          description: Actual model name used
          example: kling-v3-turbo-text-to-video
        object:
          type: string
          enum:
            - video.generation.task
          description: Task type
        progress:
          type: integer
          description: Task progress percentage (0-100)
          minimum: 0
          maximum: 100
          example: 0
        status:
          type: string
          description: Task status
          enum:
            - pending
            - processing
            - completed
            - failed
          example: pending
        task_info:
          $ref: '#/components/schemas/VideoTaskInfo'
          description: Video task details
        type:
          type: string
          enum:
            - text
            - image
            - audio
            - video
          description: Task output type
          example: video
        usage:
          $ref: '#/components/schemas/VideoUsage'
          description: Usage and billing information
    ErrorResponse:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              description: Error code identifier
            message:
              type: string
              description: Error description
            type:
              type: string
              description: Error type
    VideoTaskInfo:
      type: object
      properties:
        can_cancel:
          type: boolean
          description: Whether the task can be cancelled
          example: true
        estimated_time:
          type: integer
          description: Estimated completion time (seconds)
          minimum: 0
          example: 300
        video_duration:
          type: integer
          description: Video duration (seconds)
          example: 5
    VideoUsage:
      type: object
      description: Usage and billing information
      properties:
        billing_rule:
          type: string
          description: Billing rule
          enum:
            - per_call
            - per_token
            - per_second
          example: per_second
        credits_reserved:
          type: number
          description: Estimated credits consumed
          minimum: 0
          example: 270000
        user_group:
          type: string
          description: User group category
          example: default
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        ## All APIs require Bearer Token authentication ##


        **Get API Key:**


        Visit [API Key Management Page](https://evolink.ai/dashboard/keys) to
        get your API Key


        **Add to request header:**

        ```

        Authorization: Bearer YOUR_API_KEY

        ```

````