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

# Qwen Image 3 t2i Spicy



## OpenAPI

````yaml openapi-spec/qwen-image-3-t2i-spicy.json POST /v1/images/generations/async
openapi: 3.1.0
info:
  description: >-
    Qwen Image 3 t2i Spicy by Alibaba Cloud is a Spicy text-to-image model for
    concept art, marketing visuals, and creative design. It supports mature,
    boundary-pushing content with polished results.
  summary: API for Qwen Image 3 t2i Spicy model
  title: Qwen Image 3 t2i Spicy API
  version: 1.0.0
servers:
  - description: Model Verse API Server
    url: https://api.siray.ai
security: []
tags:
  - description: >-
      Qwen Image 3 t2i Spicy - Qwen Image 3 t2i Spicy by Alibaba Cloud is a
      Spicy text-to-image model for concept art, marketing visuals, and creative
      design. It supports mature, boundary-pushing content with polished
      results.
    name: Qwen Image 3 t2i Spicy
paths:
  /v1/images/generations/async:
    post:
      tags:
        - Qwen Image 3 t2i Spicy
      summary: Generate image
      description: Generate an image using the Qwen Image 3 t2i Spicy model
      operationId: image_model-wrskelrc9x0spcbn
      requestBody:
        content:
          application/json:
            example:
              aspect_ratio: '1:1'
              model: alibaba/qwen-image-3-t2i-spicy
              'n': 1
              prompt: example_value
              prompt_expansion_enable: true
              seed: -1
              size: 1k
            schema:
              description: Request format for image generation models
              properties:
                aspect_ratio:
                  description: Aspect ratio
                  enum:
                    - '1:1'
                    - '1:2'
                    - '2:1'
                    - '1:3'
                    - '3:1'
                    - '2:3'
                    - '3:2'
                    - '3:4'
                    - '4:3'
                    - '4:5'
                    - '5:4'
                    - '9:16'
                    - '16:9'
                    - '9:21'
                    - '21:9'
                  type: string
                model:
                  description: Model name to use for the request
                  enum:
                    - alibaba/qwen-image-3-t2i-spicy
                  type: string
                'n':
                  default: 1
                  description: Number of outputs to generate
                  maximum: 6
                  minimum: 1
                  type: integer
                prompt:
                  description: Text prompt for generation
                  type: string
                prompt_expansion_enable:
                  default: true
                  description: >-
                    Whether to automatically expand the prompt for better
                    results
                  type: boolean
                seed:
                  description: Random seed for generation
                  maximum: 2147483647
                  minimum: -1
                  type: integer
                size:
                  description: Size
                  enum:
                    - 1k
                    - 2k
                  type: string
              required:
                - model
                - prompt
                - size
                - aspect_ratio
              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

````