{
  "openapi": "3.1.0",
  "info": {
    "title": "Qwen-Image-2512 — Chutes API",
    "description": "Qwen/Qwen-Image-2512",
    "version": "ad2e5c60-e7ca-5642-bd61-f604967c8c26",
    "contact": {
      "name": "Chutes",
      "url": "https://chutes.ai"
    },
    "x-chutes": {
      "chuteId": "700fee6b-2cf1-519f-9222-634e8b41601a",
      "slug": "vonkaiser-qwen-image-2512",
      "modelName": "Qwen-Image-2512",
      "standardTemplate": null,
      "openaiCompatible": false,
      "confidentialCompute": true,
      "modelPage": "https://chutes.ai/app/chute/vonkaiser-qwen-image-2512",
      "llmsTxt": "https://chutes.ai/app/chute/vonkaiser-qwen-image-2512/llms.txt",
      "pricing": {
        "usdPerHour": 1.8
      }
    }
  },
  "servers": [
    {
      "url": "https://vonkaiser-qwen-image-2512.chutes.ai"
    }
  ],
  "security": [
    {
      "bearerAuth": []
    }
  ],
  "components": {
    "securitySchemes": {
      "bearerAuth": {
        "type": "http",
        "scheme": "bearer",
        "description": "Chutes API key. Send as `Authorization: Bearer $CHUTES_API_KEY`."
      }
    }
  },
  "paths": {
    "/generate": {
      "post": {
        "operationId": "generate",
        "summary": "POST /generate",
        "responses": {
          "200": {
            "description": "Binary media payload.",
            "content": {
              "image/jpeg": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "prompt": {
                    "type": "string",
                    "default": "a beautiful mountain landscape"
                  }
                },
                "required": [
                  "prompt"
                ]
              },
              "example": {
                "prompt": "a serene mountain lake at sunset",
                "seed": 42,
                "width": 1024,
                "height": 1024,
                "true_cfg_scale": 4,
                "negative_prompt": "",
                "num_inference_steps": 30
              }
            }
          }
        }
      }
    }
  }
}