> ## 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.

# Vidu One-Click Trending Replicate

> [Core Function] Vidu One-Click Trending Replicate is a viral video style cloning model. [Strengths] It excels at analyzing a trending or viral reference video and recreating its specific visual style, transitions, and pacing using the user's own provided subject images. [Best For] Highly recommended for: participating in social media video trends, quickly cloning viral visual effects, and applying popular editing styles to personal photos. [Limitations] Do NOT use this model for original cinematic storytelling. It is strictly meant to mimic the style of a provided reference video. [Routing] Use this when the user explicitly provides a 'trend' or 'viral' video and wants to recreate that exact vibe or transition style with their own images.



## OpenAPI

````yaml /model-api/vidu/vidu-v2v.json post /vidu/one-click-trending-replicate
openapi: 3.1.0
info:
  description: >-
    The video-to-video models API from Vidu. Includes motion sync, lip sync, and
    one-click trending replicate.
  version: 1.0.0
  contact:
    name: Modellix Support
    email: support@modellix.ai
  title: Vidu Video-to-Video Models API
servers:
  - url: https://api.modellix.ai/api/v1
    description: The video-to-video models API from Vidu.
security:
  - bearerAuth: []
paths:
  /vidu/one-click-trending-replicate:
    post:
      summary: Vidu One-Click Trending Replicate
      description: >-
        [Core Function] Vidu One-Click Trending Replicate is a viral video style
        cloning model. [Strengths] It excels at analyzing a trending or viral
        reference video and recreating its specific visual style, transitions,
        and pacing using the user's own provided subject images. [Best For]
        Highly recommended for: participating in social media video trends,
        quickly cloning viral visual effects, and applying popular editing
        styles to personal photos. [Limitations] Do NOT use this model for
        original cinematic storytelling. It is strictly meant to mimic the style
        of a provided reference video. [Routing] Use this when the user
        explicitly provides a 'trend' or 'viral' video and wants to recreate
        that exact vibe or transition style with their own images.
      operationId: viduOneClickTrendingReplicateAsync
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ViduOneClickTrendingReplicateRequest'
            examples:
              basic:
                summary: Trend video and subject images
                value:
                  video_url: https://example.com/trending-dance.mp4
                  images:
                    - https://example.com/my-character.jpg
              with_options:
                summary: With prompt and resolution
                value:
                  video_url: https://example.com/viral-transition.mp4
                  images:
                    - https://example.com/subject-1.jpg
                    - https://example.com/subject-2.jpg
                  prompt: >-
                    Replicate the viral outfit transition effect with these two
                    characters
                  aspect_ratio: '9:16'
                  resolution: 1080p
                  remove_audio: false
      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-vidu-trend-001
                  model_id: vidu/one-click-trending-replicate
                  get_result:
                    method: GET
                    url: https://api.modellix.ai/api/v1/tasks/task-vidu-trend-001
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  schemas:
    ViduOneClickTrendingReplicateRequest:
      type: object
      required:
        - video_url
        - images
      description: Vidu one-click trending replicate request.
      properties:
        prompt:
          type: string
          minLength: 1
          maxLength: 2000
          description: Additional description for the replicated video
          example: Replicate the viral transition effect
        video_url:
          type: string
          minLength: 1
          description: Reference trending video URL
          example: https://example.com/trending-video.mp4
        images:
          type: array
          minItems: 1
          maxItems: 7
          description: Subject images (1-7) as URLs or base64 data URIs
          items:
            type: string
            minLength: 1
          example:
            - https://example.com/subject.jpg
        aspect_ratio:
          type: string
          enum:
            - '16:9'
            - '9:16'
            - '1:1'
            - '4:3'
            - '3:4'
          default: '16:9'
          description: Video aspect ratio
          example: '9:16'
        resolution:
          type: string
          enum:
            - 540p
            - 720p
            - 1080p
          default: 1080p
          description: Video resolution
          example: 1080p
        remove_audio:
          type: boolean
          default: false
          description: Remove audio from the output video
          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: vidu/viduq3-mix-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 ''reference_images'' is required'
  responses:
    BadRequest:
      description: Invalid request parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            code: 400
            message: 'Invalid parameters: parameter ''reference_images'' 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`.'

````