モデル一覧に戻る
稼働中 APIQwen Image

Qwen Image 3

qwen-image-3

High-fidelity text-to-image and image-to-image generation with strong typography, layout, and multilingual prompt following.

モデル概要
エンドポイント
/api/v1/images/generations
クレジットコスト
10 credits / image
標準的な処理時間
20-60 sec
入力と出力
Text, up to 3 images → PNG or JPEG

機能

  • 1K and 2K output
  • Text and image conditioning
  • Prompt expansion
  • Deterministic seeds

リクエストパラメータ

パラメータ必須区分説明
modelstring必須Model identifier. デフォルト: qwen-image-3
promptstring必須Generation prompt, up to 800 characters.
image_urlsstring[]任意Up to three public image URLs for image-to-image generation.
aspect_ratiostring任意Output aspect ratio. デフォルト: 16:9
resolution1K | 2K任意Output resolution tier. デフォルト: 1K
output_formatpng | jpeg任意Generated file format. デフォルト: png
seedinteger任意Integer from 0 to 2147483647. デフォルト: 1

リクエスト例

curl https://qwenapi.org/api/v1/images/generations \
  -H "Authorization: Bearer $QWEN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "qwen-image-3",
  "prompt": "Editorial product photo of a translucent blue speaker on a steel desk, soft morning light",
  "aspect_ratio": "16:9",
  "resolution": "1K",
  "output_format": "png"
}'

生成エンドポイントは非同期です。同じ Bearer キーで GET /api/v1/tasks/ をポーリングしてください。