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

# Hunyuan Image 3 Instruct i2i



## OpenAPI

````yaml openapi-spec/hunyuan-image-3-instruct-i2i.json POST /v1/images/generations/async
openapi: 3.1.0
info:
  description: >-
    Hunyuan Image 3 Instruct i2i is Tencent's instruction-tuned image-to-image
    model for precise visual transformations. Edit and restyle existing images
    with natural language control.
  summary: API for Hunyuan Image 3 Instruct i2i model
  title: Hunyuan Image 3 Instruct i2i API
  version: 1.0.0
servers:
  - description: Model Verse API Server
    url: https://api.siray.ai
security: []
tags:
  - description: >-
      Hunyuan Image 3 Instruct i2i - Hunyuan Image 3 Instruct i2i is Tencent's
      instruction-tuned image-to-image model for precise visual transformations.
      Edit and restyle existing images with natural language control.
    name: Hunyuan Image 3 Instruct i2i
paths:
  /v1/images/generations/async:
    post:
      tags:
        - Hunyuan Image 3 Instruct i2i
      summary: Generate image
      description: Generate an image using the Hunyuan Image 3 Instruct i2i model
      operationId: image_model-qw4eqpnpyvnlf5rn
      requestBody:
        content:
          application/json:
            example:
              images:
                - example_value
              model: tencent/hunyuan-image-3-instruct-i2i
              prompt: example_value
              seed: -1
              size: 1024x1024
            schema:
              description: Request format for image generation models
              properties:
                images:
                  description: Array of input images, which can be data URL or image URL
                  items:
                    type: string
                  maxItems: 2
                  minItems: 1
                  type: array
                model:
                  description: Model name to use for the request
                  enum:
                    - tencent/hunyuan-image-3-instruct-i2i
                  type: string
                prompt:
                  description: Text prompt for generation
                  type: string
                seed:
                  description: Random seed for generation
                  maximum: 9999999999
                  minimum: -1
                  type: integer
                size:
                  description: Fixed size
                  enum:
                    - 1024x1024
                    - 512x512
                    - 1024x768
                    - 768x1024
                    - 1024x576
                    - 576x1024
                  type: string
              required:
                - model
                - prompt
                - images
                - size
              title: Image Generation Request
              type: object
        description: Request payload
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaskResponse'
          description: Successful response
      security:
        - bearerAuth: []
components:
  schemas:
    TaskResponse:
      description: Standard async task creation response
      properties:
        code:
          description: Status code returned by the service
          example: success
          type: string
        data:
          description: Response payload containing task details
          properties:
            task_id:
              description: Identifier of the created task
              type: string
          required:
            - task_id
          type: object
        message:
          description: Additional information about the request result
          type: string
      required:
        - data
        - code
        - message
      type: object
  securitySchemes:
    bearerAuth:
      bearerFormat: API Key
      description: Bearer authentication using API key
      scheme: bearer
      type: http

````