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

# HappyHorse 1.0 Video Edit

> [Core Function] HappyHorse 1.0 Video Edit is a streamlined video editing model. [Strengths] It provides high-quality video editing capabilities (with or without reference images) within the highly optimized HappyHorse architecture. [Best For] Highly recommended for: fast, high-quality video modifications, especially when the user explicitly requests HappyHorse. [Limitations] May lack the deep instruction-based logical replacement mechanics of Wan 2.7 Video Editing. [Routing] Route to this model when the user explicitly requests 'HappyHorse' for their video editing task.



## OpenAPI

````yaml /model-api/alibaba/alibaba-v2v.json post /alibaba/happyhorse-1.0-video-edit
openapi: 3.1.0
info:
  description: The video-to-video models API from Alibaba.
  version: 1.0.0
  contact:
    name: Modellix Support
    email: support@modellix.ai
  title: Alibaba Video-to-Video Models API
servers:
  - url: https://api.modellix.ai/api/v1
    description: The video-to-video models API from Alibaba.
security:
  - bearerAuth: []
paths:
  /alibaba/happyhorse-1.0-video-edit:
    post:
      summary: HappyHorse 1.0 Video Edit
      description: >-
        [Core Function] HappyHorse 1.0 Video Edit is a streamlined video editing
        model. [Strengths] It provides high-quality video editing capabilities
        (with or without reference images) within the highly optimized
        HappyHorse architecture. [Best For] Highly recommended for: fast,
        high-quality video modifications, especially when the user explicitly
        requests HappyHorse. [Limitations] May lack the deep instruction-based
        logical replacement mechanics of Wan 2.7 Video Editing. [Routing] Route
        to this model when the user explicitly requests 'HappyHorse' for their
        video editing task.
      operationId: happyhorse10VideoEditAsync
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Happyhorse10VideoEditRequest'
            examples:
              basic_edit:
                summary: Basic video editing without reference images
                value:
                  prompt: Add a vintage film filter effect to the video
                  input_video_url: https://example.com/video.mp4
              with_reference:
                summary: Video editing with reference image
                value:
                  prompt: >-
                    Make the character in the video wear the clothes from the
                    image
                  input_video_url: https://example.com/video.mp4
                  reference_images:
                    - https://example.com/clothes.jpg
              multiple_references:
                summary: Multiple reference images for complex editing
                value:
                  prompt: >-
                    Apply the style and colors from the reference images to
                    transform the video scene
                  input_video_url: https://example.com/video.mp4
                  reference_images:
                    - https://example.com/style1.jpg
                    - https://example.com/style2.jpg
                    - https://example.com/style3.jpg
                  resolution: 1080P
                  audio_setting: origin
              advanced:
                summary: Advanced with all parameters
                value:
                  prompt: >-
                    Transform the video scene to match the artistic style of the
                    reference image
                  input_video_url: https://example.com/video.mp4
                  reference_images:
                    - https://example.com/style.jpg
                  resolution: 1080P
                  audio_setting: origin
                  seed: 12345
              max_references:
                summary: Using maximum 5 reference images
                value:
                  prompt: Complex scene editing with multiple reference elements
                  input_video_url: https://example.com/video.mp4
                  reference_images:
                    - https://example.com/ref1.jpg
                    - https://example.com/ref2.jpg
                    - https://example.com/ref3.jpg
                    - https://example.com/ref4.jpg
                    - https://example.com/ref5.jpg
                  resolution: 720P
      responses:
        '200':
          description: Task submitted successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AsyncTaskResponse'
components:
  schemas:
    Happyhorse10VideoEditRequest:
      type: object
      required:
        - prompt
        - input_video_url
      properties:
        prompt:
          type: string
          description: >-
            Text instruction describing desired video editing operations, such
            as style transformation or local replacement. Supports any language
            input. Maximum length: 5000 non-Chinese characters or 2500 Chinese
            characters (automatically truncated if exceeded)
          minLength: 1
          maxLength: 5000
          example: >-
            Make the character in the video wear the clothes from the reference
            image
        input_video_url:
          type: string
          format: uri
          pattern: ^https?://
          description: >-
            Input video URL (HTTP/HTTPS, must be publicly accessible). Video
            requirements: duration 3-60 seconds, format MP4/MOV (H.264
            recommended), resolution: long side ≤2160px, short side ≥320px,
            aspect ratio: 1:2.5~2.5:1, file size ≤100MB, frame rate >8fps.
            Output video: 3-15 seconds (automatically truncates to first 15
            seconds if input exceeds)
          example: https://example.com/video.mp4
        reference_images:
          type: array
          description: >-
            Reference image URLs for style transfer or local replacement
            (optional, 0-5 images). Image requirements: format
            JPEG/JPG/PNG/WEBP, resolution: width and height ≥300px, aspect
            ratio: 1:2.5~2.5:1, file size ≤10MB
          minItems: 0
          maxItems: 5
          items:
            type: string
            format: uri
            example: https://example.com/reference.jpg
          example:
            - https://example.com/style1.jpg
            - https://example.com/style2.jpg
        resolution:
          type: string
          description: Output video resolution tier
          enum:
            - 720P
            - 1080P
          default: 1080P
          example: 1080P
        audio_setting:
          type: string
          description: >-
            Audio control. auto: automatically controlled by the model; origin:
            preserve original audio from input video
          enum:
            - auto
            - origin
          default: auto
          example: auto
        seed:
          type: integer
          description: >-
            Random seed for reproducibility (0-2147483647). If not specified,
            system generates random seed. Fixed seed value can improve result
            reproducibility, but cannot guarantee completely identical results
            due to probabilistic nature of model generation
          minimum: 0
          maximum: 2147483647
          example: 12345
    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
              example: task-abc123
            model_id:
              type: string
              description: Model ID
              example: model-123
            get_result:
              type: object
              description: API information to query the task result
              properties:
                method:
                  type: string
                  description: HTTP method
                  example: GET
                url:
                  type: string
                  description: Full URL to query the task result
                  example: https://api.modellix.ai/api/v1/tasks/task-abc123
          description: Detailed data about the submitted asynchronous task.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'API Key authentication. Format: `Bearer YOUR_API_KEY`.'

````