Qwen
Qwen 画像

phuocanh421994/Qwen_Image_3.0_Pro

モデルID: phuocanh421994/Qwen_Image_3.0_Pro
モデル系列
Qwen
Context
未更新
最低価格 / リクエスト
0.75 ¥
利用回数
126
成功
77.8%
トークン
9.21M
アップタイム
24時間前現在
7日前現在

料金表

入力 / 1Mトークン
0.75 ¥
出力 / 1Mトークン
0.75 ¥
リクエストごと
0.75 ¥
最低価格 / リクエスト
0.75 ¥
価格変更履歴

過去に適用されたすべての価格レベルです。「現在」の行が使用中の価格です。

現在 開始日 07/08/2026 - 13:42:25
入力 / 1Mトークン0.75 ¥ 出力 / 1Mトークン0.75 ¥ リクエストごと0.75 ¥ 最低価格 / リクエスト0.75 ¥
費用見積もり
合計見積もり 0 ¥
平均 / リクエスト 0 ¥

公開価格に基づく見積もりです。キャッシュを利用すると通常より安くなります。

対応エンドポイント
https://api.xah.io/v1/images/generations
認証方式 POST · application/json
認証 Bearerトークン(APIキー)
レート制限 10 req/min
API種別 画像

技術メモ

Qwen Image Generation and Editing 3.0 model that supports both text-to-image (T2I) and image-to-image/image editing (I2I).
Image resolution:
- Text-to-image (T2I): Total pixels must be between 512x512 and 2048x2048.
- Image-to-image (I2I): Total pixels must be between 512x512 and 2048x2048.

Image format: PNG

共有

curl 'https://api.xah.io/v1/images/generations' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "phuocanh421994/Qwen_Image_3.0_Pro",
    "prompt": "A serene mountain landscape at sunrise",
    "n": 1,
    "size": "1024x1024"
}'
// Node.js / Browser
const res = await fetch('https://api.xah.io/v1/images/generations', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    "model": "phuocanh421994/Qwen_Image_3.0_Pro",
    "prompt": "A serene mountain landscape at sunrise",
    "n": 1,
    "size": "1024x1024"
})
});
const data = await res.json();
console.log(data);
import requests

url = 'https://api.xah.io/v1/images/generations'
headers = {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json',
}
payload = {
    "model": "phuocanh421994/Qwen_Image_3.0_Pro",
    "prompt": "A serene mountain landscape at sunrise",
    "n": 1,
    "size": "1024x1024"
}

res = requests.post(url, headers=headers, json=payload, timeout=120)
print(res.status_code, res.json())
{
    "model": "phuocanh421994/Qwen_Image_3.0_Pro",
    "prompt": "A serene mountain landscape at sunrise",
    "n": 1,
    "size": "1024x1024"
}
クイックテスト

このモデルはテキストチャットに対応していないため、クイックテストはできません。

レビュー・コメント
0.0 / 0 件のレビュー
レビューを読み込み中...
サポートへ問い合わせ
いつでもサポートいたします