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

# Kling V3.0 Image to Video Task

> Retrieve the status and result of an image-to-video generation task

Retrieve the status and result of a Kling V3.0 image-to-video generation task using the `task_info.id` returned from the POST request.


## OpenAPI

````yaml api-reference/endpoint/klingai/kling-v3/openapi.yaml GET /vendors/klingai/v1/kling-v3/image-to-video/generation/{task_id}
openapi: 3.1.0
info:
  title: Kling v3.0 API
  description: >-
    Kling v3.0 Video Generation Model API with Multi-Shot, Sound, and Element
    Support
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.mulerouter.ai/
security:
  - bearerAuth: []
paths:
  /vendors/klingai/v1/kling-v3/image-to-video/generation/{task_id}:
    get:
      summary: Get Image to Video Task
      description: Retrieve the status and result of an image-to-video generation task
      operationId: kling_v3_image_to_video_get
      parameters:
        - name: task_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Task result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Image2VideoResponse'
              example:
                videos:
                  - >-
                    https://mulerouter.muleusercontent.com/public/079c5ad5-3b81-4eee-af06-4d85029899d0/result_000.mp4
                task_info:
                  id: 8e1e315e-b50d-4334-a231-be7d19a372f4
                  status: completed
                  created_at: '2026-02-14T00:00:00.000Z'
                  updated_at: '2026-02-14T00:00:00.000Z'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    Image2VideoResponse:
      type: object
      additionalProperties: true
      properties:
        task_info:
          $ref: '#/components/schemas/TaskInfoResponse'
        videos:
          type: array
          items:
            type: string
            format: uri
    ErrorResponse:
      type: object
      additionalProperties: true
      properties:
        task_info:
          $ref: '#/components/schemas/TaskInfoErrorResponse'
    TaskInfoResponse:
      type: object
      additionalProperties: true
      properties:
        id:
          type: string
          format: uuid
        status:
          type: string
          enum:
            - completed
            - pending
            - processing
            - failed
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        error:
          $ref: '#/components/schemas/TaskInfoErrorObject'
      required:
        - id
        - status
        - created_at
        - updated_at
    TaskInfoErrorResponse:
      type: object
      additionalProperties: true
      properties:
        id:
          type: string
          format: uuid
        status:
          type: string
          enum:
            - failed
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        error:
          $ref: '#/components/schemas/TaskInfoErrorObject'
      required:
        - id
        - status
        - created_at
        - updated_at
        - error
    TaskInfoErrorObject:
      type: object
      additionalProperties: true
      properties:
        code:
          type: integer
          example: 3001
        title:
          type: string
          example: Task Execution Error
        detail:
          type: string
          example: Task execution failed
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````