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

# Seedream 5.0 Pro t2i Spicy



## OpenAPI

````yaml openapi-spec/seedream-5.0-pro-t2i-spicy.json POST /v1/images/generations/async
openapi: 3.1.0
info:
  description: >-
    Seedream 5.0 Pro is an advanced AI image-generation and editing model by
    ByteDance, delivering high-fidelity visuals, precise prompt adherence, and
    professional-grade consistency for design and creative workflows.
  summary: API for Seedream 5.0 Pro t2i Spicy model
  title: Seedream 5.0 Pro t2i Spicy API
  version: 1.0.0
servers:
  - description: Model Verse API Server
    url: https://api.siray.ai
security: []
tags:
  - description: >-
      Seedream 5.0 Pro t2i Spicy - Seedream 5.0 Pro is an advanced AI
      image-generation and editing model by ByteDance, delivering high-fidelity
      visuals, precise prompt adherence, and professional-grade consistency for
      design and creative workflows.
    name: Seedream 5.0 Pro t2i Spicy
paths:
  /v1/images/generations/async:
    post:
      tags:
        - Seedream 5.0 Pro t2i Spicy
      summary: Generate image
      description: Generate an image using the Seedream 5.0 Pro t2i Spicy model
      operationId: image_model-ul716djq0o7fmqmd
      requestBody:
        content:
          application/json:
            example:
              model: bytedance/seedream-5.0-pro-t2i-spicy
              output_format: jpg
              prompt: example_value
              size: 1024x1024
            schema:
              description: Request format for image generation models
              properties:
                model:
                  description: Model name to use for the request
                  enum:
                    - bytedance/seedream-5.0-pro-t2i-spicy
                  type: string
                output_format:
                  description: Output format for the 3D model
                  enum:
                    - jpg
                    - png
                  type: string
                prompt:
                  description: Text prompt for generation
                  type: string
                size:
                  description: Fixed size
                  enum:
                    - 1024x1024
                    - 1152x864
                    - 864x1152
                    - 1424x800
                    - 800x1424
                    - 1248x832
                    - 832x1248
                    - 1568x672
                    - 2048x2048
                    - 2368x1776
                    - 1776x2368
                    - 2816x1584
                    - 1584x2816
                    - 2496x1664
                    - 1664x2496
                    - 3136x1344
                  type: string
              required:
                - model
                - prompt
                - 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

````