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

# Seedream 5.0 Flash Image Generation

> - Seedream 5.0 Flash (doubao-seedream-5.0-flash) model supports text-to-image, image-to-image, image editing and other generation modes
- Asynchronous processing mode, use the returned task ID to [query](/en/api-manual/task-management/get-task-detail)
- Generated image links are valid for 24 hours, please save them promptly



## OpenAPI

````yaml en/api-manual/image-series/seedream/seedream-5.0-flash-image-generate.json POST /v1/images/generations
openapi: 3.1.0
info:
  title: doubao-seedream-5.0-flash Interface
  description: >-
    Create image tasks using AI models, supporting multiple models and parameter
    configurations
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.evolink.ai
    description: Production environment
security:
  - bearerAuth: []
tags:
  - name: Image Generation
    description: AI image generation related APIs
paths:
  /v1/images/generations:
    post:
      tags:
        - Image Generation
      summary: doubao-seedream-5.0-flash Interface
      description: >-
        - Seedream 5.0 Flash (doubao-seedream-5.0-flash) model supports
        text-to-image, image-to-image, image editing and other generation modes

        - Asynchronous processing mode, use the returned task ID to
        [query](/en/api-manual/task-management/get-task-detail)

        - Generated image links are valid for 24 hours, please save them
        promptly
      operationId: createImageGeneration
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ImageGenerationRequest'
            examples:
              text_to_image:
                summary: Text to Image
                value:
                  model: doubao-seedream-5.0-flash
                  prompt: A serene lake reflecting the beautiful sunset
                  size: '16:9'
                  quality: 2K
      responses:
        '200':
          description: Image generation task created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ImageGenerationResponse'
        '400':
          description: Invalid request parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: invalid_request
                  message: Invalid request parameters
                  type: invalid_request_error
        '401':
          description: Unauthenticated, invalid or expired token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: unauthorized
                  message: Invalid or expired token
                  type: authentication_error
        '402':
          description: Insufficient quota, recharge required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: insufficient_quota
                  message: Insufficient quota. Please top up your account.
                  type: insufficient_quota
        '403':
          description: Access denied
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: model_access_denied
                  message: 'Token does not have access to model: doubao-seedream-5.0-flash'
                  type: invalid_request_error
        '429':
          description: Rate limit exceeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: rate_limit_exceeded
                  message: Too many requests, please try again later
                  type: rate_limit_error
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: internal_error
                  message: Internal server error
                  type: api_error
components:
  schemas:
    ImageGenerationRequest:
      type: object
      required:
        - model
        - prompt
      properties:
        model:
          type: string
          description: Image generation model name
          enum:
            - doubao-seedream-5.0-flash
          default: doubao-seedream-5.0-flash
          example: doubao-seedream-5.0-flash
        prompt:
          type: string
          description: >-
            Prompt describing the image you want to generate, or describing how
            to edit the input image


            **Language support:** In addition to Chinese and English, Seedream
            5.0 Flash also supports Russian, Arabic, Filipino, Thai, Turkish,
            Korean, Malay, Spanish, Portuguese, Indonesian, French, German,
            Vietnamese and Japanese.


            **Length limit:** Up to `4000` tokens (about 2,600 Chinese
            characters or 5,000 English words); exceeding it returns `400` and
            is not billed.


            **Recommendation:** Keep prompts under 300 Chinese characters or 600
            English words. A longer prompt still fits the limit but dilutes the
            information, and the model may miss details, leaving elements out of
            the image.
          example: A serene lake reflecting the beautiful sunset
        size:
          type: string
          description: >-
            Size of generated image, supports two formats:


            **Method 1 - Ratio format:**

            - `auto`, `1:1`, `2:3`, `3:2`, `3:4`, `4:3`, `4:5`, `5:4`, `9:16`,
            `16:9`, `21:9`, `9:21`

            - Works with the `quality` parameter to automatically generate an
            image at the corresponding aspect ratio and resolution, without
            manually specifying pixels


            **Method 2 - Pixel format:**

            - Width x height, e.g.: `1024x1024`, `2048x2048`

            - Total pixel range: `[921600, 4624220]`

            - Aspect ratio range: `[1/16, 16]`

            - Both width and height must be greater than `14px`


            Defaults to `auto` when `size` is omitted. `auto` means no explicit
            ratio: the model decides the composition from the prompt, and the
            output resolution follows the tier set by `quality`.
          default: auto
          example: '16:9'
        quality:
          type: string
          description: >-
            Resolution tier, used with the ratio format of `size`, defaults to
            `1K`.


            | Aspect ratio | 1K | 1.5K | 2K |

            |---|---|---|---|

            | `1:1` | 1024×1024 | 1536×1536 | 2048×2048 |

            | `2:3` | 832×1248 | 1248×1872 | 1664×2496 |

            | `3:2` | 1248×832 | 1872×1248 | 2496×1664 |

            | `3:4` | 864×1152 | 1344×1792 | 1776×2368 |

            | `4:3` | 1152×864 | 1792×1344 | 2368×1776 |

            | `4:5` | 896×1120 | 1344×1680 | 1792×2240 |

            | `5:4` | 1120×896 | 1680×1344 | 2240×1792 |

            | `9:16` | 800×1424 | 1152×2048 | 1584×2816 |

            | `16:9` | 1424×800 | 2048×1152 | 2816×1584 |

            | `21:9` | 1568×672 | 2352×1008 | 3136×1344 |

            | `9:21` | 672×1568 | 1008×2352 | 1344×3136 |


            **Billing:** `1K`, `1.5K` and `2K` all cost the same flat rate per
            image, so pick the tier your design needs. The pixel format of
            `size` is billed at the same rate.
          enum:
            - 1K
            - 1.5K
            - 2K
          default: 1K
          example: 2K
        prompt_priority:
          type: string
          description: >-
            Prompt optimization strategy, used to set the mode for prompt
            optimization


            **Options:**

            - `standard`: Standard mode (the only value Seedream 5.0 Flash
            accepts)


            **Note:** `fast` is not supported by Seedream 5.0 Flash; requests
            with `fast` are rejected with `400` and are not billed.
          enum:
            - standard
          default: standard
          example: standard
        image_urls:
          type: array
          description: >-
            Reference image URL list for image-to-image and image editing
            features


            **Note:**

            - Single request supports input image quantity: `10` images

            - Reference images are not billed; only generated images are

            - Image size: no more than `30MB`

            - Supported image formats: `.jpeg`, `.jpg`, `.png`, `.webp`, `.bmp`,
            `.tiff`, `.gif`, `.heic`, `.heif`

            - Aspect ratio (width/height) range: `[1/16, 16]`

            - Width and height (px) > 14

            - Total pixels: `[196, 6000×6000]`

            - Image URLs must be directly viewable by the server, or the image
            URL should trigger direct download when accessed (typically these
            URLs end with image file extensions, such as `.png`, `.jpg`)
          items:
            type: string
            format: uri
          maxItems: 10
          example:
            - https://example.com/image1.png
            - https://example.com/image2.png
        output_format:
          type: string
          description: >-
            Output image format


            **Options:**

            - `png`: PNG format

            - `jpeg`: JPEG format


            **Note:** When `background=transparent` is set, the output is always
            png; passing `output_format=jpeg` at the same time is rejected.
          enum:
            - png
            - jpeg
          default: jpeg
          example: jpeg
        watermark:
          type: boolean
          description: Whether to add a watermark to the generated image
          default: false
          example: false
        background:
          type: string
          description: >-
            Transparency switch


            **Options:**

            - `opaque`: Regular solid background (default)

            - `transparent`: Preserve the alpha channel the input image already
            has


            > `transparent` **preserves** the transparent background of the
            input image — it does **not** cut out the subject or remove the
            background.


            **Limits (apply to `transparent` only):**

            - Exactly one input image must be supplied, and it must have an
            alpha channel

            - The output is always png; passing `output_format=jpeg` at the same
            time is rejected

            - Input images in formats without alpha support (such as jpeg) are
            rejected by the model
          enum:
            - opaque
            - transparent
          default: opaque
          example: opaque
        callback_url:
          type: string
          description: >-
            HTTPS callback address after task completion


            **Callback Timing:**

            - Triggered when task is completed, failed, or cancelled

            - Sent after billing confirmation is completed


            **Security Restrictions:**

            - Only HTTPS protocol is supported

            - Callback to internal IP addresses is prohibited (127.0.0.1,
            10.x.x.x, 172.16-31.x.x, 192.168.x.x, etc.)

            - URL length must not exceed `2048` characters


            **Callback Mechanism:**

            - Timeout: `10` seconds

            - Maximum `3` retries on failure (retries after `1` second/`2`
            seconds/`4` seconds)

            - Callback response body format is consistent with the task query
            API response format

            - Callback address returning 2xx status code is considered
            successful, other status codes will trigger retry
          format: uri
          example: https://your-domain.com/webhooks/image-task-completed
    ImageGenerationResponse:
      type: object
      properties:
        created:
          type: integer
          description: Task creation timestamp
          example: 1757165031
        id:
          type: string
          description: Task ID
          example: task-unified-1757165031-seedream5flash
        model:
          type: string
          description: Actual model name used
          example: doubao-seedream-5.0-flash
        object:
          type: string
          enum:
            - image.generation.task
          description: Specific task type
        progress:
          type: integer
          description: Task progress percentage (0-100)
          minimum: 0
          maximum: 100
          example: 0
        status:
          type: string
          description: Task status
          enum:
            - pending
            - processing
            - completed
            - failed
          example: pending
        task_info:
          $ref: '#/components/schemas/TaskInfo'
          description: Async task information
        type:
          type: string
          enum:
            - text
            - image
            - audio
            - video
          description: Task output type
          example: image
        usage:
          $ref: '#/components/schemas/Usage'
          description: Usage and billing information
    ErrorResponse:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              description: Error code identifier
            message:
              type: string
              description: Error description
            type:
              type: string
              description: Error type
    TaskInfo:
      type: object
      properties:
        can_cancel:
          type: boolean
          description: Whether the task can be cancelled
          example: true
        estimated_time:
          type: integer
          description: Estimated completion time (seconds)
          minimum: 0
          example: 20
    Usage:
      type: object
      description: Usage and billing information
      properties:
        billing_rule:
          type: string
          description: Billing rule
          enum:
            - per_call
            - per_token
            - per_second
          example: per_call
        credits_reserved:
          type: number
          description: Estimated credits consumed
          minimum: 0
          example: 1.1016
        user_group:
          type: string
          description: User group category
          example: default
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        ##All APIs require Bearer Token authentication##


        **Get API Key:**


        Visit [API Key Management Page](https://evolink.ai/dashboard/keys) to
        get your API Key


        **Add to request header:**

        ```

        Authorization: Bearer YOUR_API_KEY

        ```

````



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

# Query Task Status

> Query the status, progress, and result information of asynchronous tasks by task ID



## OpenAPI

````yaml en/api-manual/task-management/get-task-detail.json GET /v1/tasks/{task_id}
openapi: 3.1.0
info:
  title: Get Task Details API
  description: >-
    Query the status, progress, and result information of asynchronous tasks by
    task ID
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.evolink.ai
    description: Production environment
security:
  - bearerAuth: []
tags:
  - name: Task Management
    description: Asynchronous task management related APIs
paths:
  /v1/tasks/{task_id}:
    get:
      tags:
        - Task Management
      summary: Query Task Status
      description: >-
        Query the status, progress, and result information of asynchronous tasks
        by task ID
      operationId: getTaskDetail
      parameters:
        - name: task_id
          in: path
          required: true
          schema:
            type: string
          description: >-
            Task ID, ignore {} when querying, append the id from the async task
            response body at the end of the path
          example: task-unified-1756817821-4x3rx6ny
      responses:
        '200':
          description: Task status details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaskDetailResponse'
        '400':
          description: Request parameter error, format error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: invalid_task_id
                  message: Invalid task ID format, must start with 'task-unified-'
                  type: invalid_request_error
                  param: task_id
        '401':
          description: Unauthenticated, token invalid or expired
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: unauthorized
                  message: Authentication required
                  type: authentication_error
        '402':
          description: Insufficient quota, recharge required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: quota_exceeded
                  message: Insufficient quota. Please top up your account.
                  type: insufficient_quota
        '403':
          description: No permission to access
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: permission_denied
                  message: You don't have permission to access this task
                  type: invalid_request_error
        '404':
          description: Resource does not exist
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: task_not_found
                  message: The requested task could not be found
                  type: invalid_request_error
        '429':
          description: Request rate limit exceeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: rate_limit_exceeded
                  message: Rate limit exceeded
                  type: evo_api_error
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: internal_error
                  message: Failed to retrieve task status
                  type: api_error
components:
  schemas:
    TaskDetailResponse:
      type: object
      properties:
        created:
          type: integer
          description: Task creation timestamp
          example: 1756817821
        id:
          type: string
          description: Task ID
          example: task-unified-1756817821-4x3rx6ny
        model:
          type: string
          description: Model used
          example: doubao-seedream-5.0-flash
        object:
          type: string
          description: Task type
          enum:
            - image.generation.task
            - video.generation.task
            - audio.generation.task
          example: image.generation.task
        progress:
          type: integer
          minimum: 0
          maximum: 100
          description: Task progress percentage
          example: 100
        results:
          type: array
          items:
            type: string
            format: uri
          description: Task result list (provided when completed)
          example:
            - http://example.com/image.jpg
        status:
          type: string
          description: Task status
          enum:
            - pending
            - processing
            - completed
            - failed
          example: completed
        error:
          type: object
          nullable: true
          description: >-
            Error information when the task fails (only present when status is
            "failed"). Note: error.code here is a string-type business error
            code, different from HTTP status codes. See the Error Codes
            Reference for the complete list.
          properties:
            code:
              type: string
              description: Business error code (string type)
              example: content_policy_violation
            message:
              type: string
              description: User-friendly error description with troubleshooting tips
              example: |-
                Content policy violation.
                Your request was blocked by safety filters.
            type:
              type: string
              description: Error type identifier, always "task_error"
              example: task_error
        task_info:
          type: object
          description: Task detailed information
          properties:
            can_cancel:
              type: boolean
              description: Whether the task can be cancelled
              example: false
        type:
          type: string
          description: Task type
          enum:
            - image
            - video
            - audio
            - text
          example: image
    ErrorResponse:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              description: Error code (string type)
              example: invalid_task_id
            message:
              type: string
              description: Error description message
              example: Invalid task ID format
            type:
              type: string
              description: Error type
              example: invalid_request_error
            param:
              type: string
              description: Related parameter name
              example: task_id
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        ##All APIs require Bearer Token authentication##


        **Get API Key:**


        Visit [API Key Management Page](https://evolink.ai/dashboard/keys) to
        get your API Key


        **Add to request header:**

        ```

        Authorization: Bearer YOUR_API_KEY

        ```

````
