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

# C1 Image-to-Video

> [Core Function] PixVerse c1 I2V animates a single starting image into a video guided by a text prompt. [Strengths] Smooth, prompt-guided motion from one frame; optional audio. [Best For] Bringing a photo/illustration to life, product showcases, quick cinematic motion from a still. [Limitations] Do NOT use this for two-frame transitions (use First-Last-Frame), multi-subject fusion (use Reference-to-Video), or text-only generation (use Text-to-Video). It requires exactly one starting image, does not support multi-clip, and supports up to 1080p and a maximum of 15s. [Routing] Use when the user provides one starting image. The c1 variant matches v6 inputs but does not support multi-clip generation; choose c1-i2v when the user requests the c1 model and multi-clip is not needed.



## OpenAPI

````yaml /model-api/pixverse/pixverse-i2v.json post /pixverse/c1-i2v
openapi: 3.1.0
info:
  description: >-
    The image-to-video models API from PixVerse. Includes single-image-to-video,
    first-last-frame transition, and reference-to-video (fusion). Tasks are
    asynchronous: submit, then poll the task endpoint for the result.
  version: 1.0.0
  contact:
    name: Modellix Support
    email: support@modellix.ai
  title: PixVerse Image-to-Video Models API
servers:
  - url: https://api.modellix.ai/api/v1
    description: The image-to-video models API from PixVerse.
security:
  - bearerAuth: []
paths:
  /pixverse/c1-i2v:
    post:
      summary: C1 Image-to-Video
      description: >-
        [Core Function] PixVerse c1 I2V animates a single starting image into a
        video guided by a text prompt. [Strengths] Smooth, prompt-guided motion
        from one frame; optional audio. [Best For] Bringing a photo/illustration
        to life, product showcases, quick cinematic motion from a still.
        [Limitations] Do NOT use this for two-frame transitions (use
        First-Last-Frame), multi-subject fusion (use Reference-to-Video), or
        text-only generation (use Text-to-Video). It requires exactly one
        starting image, does not support multi-clip, and supports up to 1080p
        and a maximum of 15s. [Routing] Use when the user provides one starting
        image. The c1 variant matches v6 inputs but does not support multi-clip
        generation; choose c1-i2v when the user requests the c1 model and
        multi-clip is not needed.
      operationId: pixverseC1I2VAsync
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PixverseC1I2VRequest'
            examples:
              basic:
                summary: Image and prompt
                value:
                  image: https://example.com/portrait.png
                  prompt: The subject slowly turns toward the camera and smiles
                  duration: 5
                  quality: 720p
      responses:
        '200':
          description: Task submitted successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AsyncTaskResponse'
              example:
                code: 0
                message: success
                data:
                  status: pending
                  task_id: task-pixverse-i2v-002
                  model_id: pixverse/c1-i2v
                  get_result:
                    method: GET
                    url: https://api.modellix.ai/api/v1/tasks/task-pixverse-i2v-002
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  schemas:
    PixverseC1I2VRequest:
      type: object
      required:
        - image
        - prompt
        - duration
        - quality
      description: >-
        PixVerse c1 image-to-video request. Animates a single starting image
        into a video. duration/quality are required (no default). c1 does not
        support multi-clip.
      properties:
        image:
          type: string
          minLength: 1
          description: Starting image URL (publicly accessible; png/jpeg/jpg/webp).
          example: https://example.com/portrait.png
        prompt:
          type: string
          minLength: 1
          maxLength: 5000
          description: Motion description for the generated video.
          example: The subject slowly turns toward the camera and smiles
        duration:
          type: integer
          minimum: 1
          maximum: 15
          description: Video duration in seconds (required).
          example: 5
        quality:
          type: string
          enum:
            - 360p
            - 540p
            - 720p
            - 1080p
          description: Output resolution (required).
          example: 720p
        template_id:
          type: integer
          description: >-
            Optional effect/template id copied from the PixVerse Effect Center
            to apply a preset effect.
          example: 308621408717184
        seed:
          type: integer
          minimum: 0
          maximum: 2147483647
          description: Random seed (omit for random).
          example: 0
        generate_audio_switch:
          type: boolean
          default: false
          description: Whether to generate audio.
          example: false
    AsyncTaskResponse:
      type: object
      required:
        - code
        - message
        - data
      properties:
        code:
          type: integer
          description: Response code, 0 indicates success
          example: 0
        message:
          type: string
          description: Response message
          example: success
        data:
          type: object
          required:
            - status
            - task_id
            - model_id
          properties:
            status:
              type: string
              enum:
                - pending
                - processing
              description: Task status
              example: pending
            task_id:
              type: string
              description: Unique task identifier for polling
              example: task-abc123
            model_id:
              type: string
              description: Model ID in `provider/model` format
              example: pixverse/v6-r2v
            get_result:
              type: object
              description: API information to query the task result
              properties:
                method:
                  type: string
                  example: GET
                url:
                  type: string
                  example: https://api.modellix.ai/api/v1/tasks/task-abc123
          description: Detailed data about the submitted asynchronous task.
    ErrorResponse:
      type: object
      required:
        - code
        - message
      properties:
        code:
          type: integer
          example: 400
        message:
          type: string
          example: 'Invalid parameters: parameter ''image'' is required'
  responses:
    BadRequest:
      description: Invalid request parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            code: 400
            message: 'Invalid parameters: parameter ''image'' is required'
    Unauthorized:
      description: Unauthorized - Invalid or missing API Key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            code: 401
            message: 'Authentication failed: invalid API key'
    TooManyRequests:
      description: Too many requests - Rate limit exceeded
      headers:
        X-RateLimit-Limit:
          description: Maximum requests per minute
          schema:
            type: integer
            example: 100
        X-RateLimit-Remaining:
          description: Remaining quota in current window
          schema:
            type: integer
            example: 0
        X-RateLimit-Reset:
          description: Rate limit window reset time (Unix timestamp)
          schema:
            type: integer
            example: 1704067260
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            code: 429
            message: >-
              Rate limit exceeded: 100 requests per minute, retry after 60
              seconds
    InternalServerError:
      description: Internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            code: 500
            message: Internal server error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'API Key authentication. Format: `Bearer YOUR_API_KEY`.'

````