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

# Seedream 5.0 Pro Edit

> [Core Function] Seedream 5.0 Pro Edit is a professional-grade single-image editing (I2I) model. [Strengths] It supports interactive precise editing: edit locations can be specified via coordinates, selection boxes, or arrows described in the prompt, with strong element-level control and subject consistency. [Best For] Highly recommended for: precise local retouching, adding/removing/replacing objects at exact positions, style transfer of a single photo, and professional post-editing workflows. [Limitations] Do NOT use this model for text-to-image generation (an input image is required) or for blending multiple reference images; it accepts exactly one input image and outputs exactly one image (no batch or streaming). [Routing] For 2-10 reference images use Seedream 5.0 Pro Multi-Reference; for pure text-to-image use Seedream 5.0 Pro; choose Seedream 5.0 Lite Edit when batch outputs or more than 10 input images are required.



## OpenAPI

````yaml /model-api/bytedance/bytedance-i2i.json post /bytedance/seedream-5.0-pro-edit
openapi: 3.1.0
info:
  description: The image-to-image models API from ByteDance.
  version: 1.0.0
  contact:
    name: Modellix Support
    email: support@modellix.ai
  title: ByteDance Image-to-Image Models API
servers:
  - url: https://api.modellix.ai/api/v1
    description: The image-to-image models API from ByteDance.
security:
  - bearerAuth: []
paths:
  /bytedance/seedream-5.0-pro-edit:
    post:
      summary: Seedream 5.0 Pro Edit
      description: >-
        [Core Function] Seedream 5.0 Pro Edit is a professional-grade
        single-image editing (I2I) model. [Strengths] It supports interactive
        precise editing: edit locations can be specified via coordinates,
        selection boxes, or arrows described in the prompt, with strong
        element-level control and subject consistency. [Best For] Highly
        recommended for: precise local retouching, adding/removing/replacing
        objects at exact positions, style transfer of a single photo, and
        professional post-editing workflows. [Limitations] Do NOT use this model
        for text-to-image generation (an input image is required) or for
        blending multiple reference images; it accepts exactly one input image
        and outputs exactly one image (no batch or streaming). [Routing] For
        2-10 reference images use Seedream 5.0 Pro Multi-Reference; for pure
        text-to-image use Seedream 5.0 Pro; choose Seedream 5.0 Lite Edit when
        batch outputs or more than 10 input images are required.
      operationId: seedream50ProEditI2iAsync
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Seedream50ProEditI2iRequest'
            examples:
              basic:
                summary: Basic single-image edit
                value:
                  prompt: Convert this image to a watercolor painting style
                  image: https://example.com/input.jpg
              precise_edit:
                summary: Interactive precise edit with coordinates
                value:
                  prompt: >-
                    Replace the object in the selection box (100,100)-(300,300)
                    with a red vintage car
                  image: https://example.com/input.jpg
                  size: 2048x2048
                  optimize_prompt_mode: standard
                  output_format: png
      responses:
        '200':
          description: Task submitted successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AsyncTaskResponse'
components:
  schemas:
    Seedream50ProEditI2iRequest:
      type: object
      required:
        - prompt
        - image
      properties:
        prompt:
          type: string
          description: >-
            Image editing instruction, supports Chinese and English. Maximum
            10000 characters. We recommend keeping the prompt under 600 words.
            Interactive precise editing is supported: edit locations can be
            specified via coordinates, selection boxes, or arrows described in
            the prompt.
          minLength: 1
          maxLength: 10000
          example: >-
            Replace the object in the selection box (100,100)-(300,300) with a
            red vintage car
        image:
          type: string
          description: >-
            Input image URL (or Base64 data URI). Single image only. Each image
            must be <= 30 MB, width and height > 14 px, aspect ratio within
            [1/16, 16], total pixels <= 36,000,000. Supported formats: JPEG,
            PNG, WEBP, BMP, TIFF, GIF, HEIC, HEIF.
          example: https://example.com/input.jpg
        size:
          type: string
          description: >-
            Image size in format 'widthxheight'. Total pixels must be within
            [1280x720(921,600), 4,624,220] and aspect ratio within [1/16, 16],
            corresponding to the official 1K/2K resolution levels (3K/4K not
            supported). Recommended 2K sizes: 2048x2048 (1:1), 2816x1584 (16:9),
            2368x1776 (4:3).
          default: 1024x1024
          example: 2048x2048
        optimize_prompt_mode:
          type: string
          enum:
            - standard
            - fast
          description: >-
            Prompt optimization mode. 'standard': higher quality with longer
            generation time. 'fast': faster generation with slightly lower
            quality.
          default: standard
          example: standard
        output_format:
          type: string
          enum:
            - jpeg
            - png
          description: 'Output image format. Supported values: ''jpeg'' and ''png''.'
          default: jpeg
          example: png
    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`.'

````