Qwen
Qwen 画像

phuocanh421994/Qwen-Image-2.0-Pro

モデルID: phuocanh421994/Qwen-Image-2.0-Pro
モデル系列
Qwen
Context
未更新
リクエストごと
0.156 ¥
利用回数
6.5K
成功
98.3%
トークン
492.97M
アップタイム 95.65%
24時間前現在
7日前現在

料金表

リクエストごと
0.156 ¥
価格変更履歴

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

現在 開始日 29/07/2026 - 21:32:29
リクエストごと0.156 ¥
対応エンドポイント
https://api.xah.io/v1/images/generations
認証方式 POST · application/json
認証 Bearerトークン(APIキー)
レート制限 100 req/min
API種別 画像

技術メモ

size expected format: width*height (max 2048*2048)n = 1

共有

curl 'https://api.xah.io/v1/images/generations' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "phuocanh421994/Qwen-Image-2.0-Pro",
    "prompt": "A young woman taking a casual selfie outdoors, natural lighting, warm tones, soft bokeh background with greenery",
    "parameters": {
        "size": "2048*2048",
        "n": 1,
        "watermark": false,
        "thinking_mode": true
    }
}'
// 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-2.0-Pro",
    "prompt": "A young woman taking a casual selfie outdoors, natural lighting, warm tones, soft bokeh background with greenery",
    "parameters": {
        "size": "2048*2048",
        "n": 1,
        "watermark": false,
        "thinking_mode": true
    }
})
});
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-2.0-Pro",
    "prompt": "A young woman taking a casual selfie outdoors, natural lighting, warm tones, soft bokeh background with greenery",
    "parameters": {
        "size": "2048*2048",
        "n": 1,
        "watermark": false,
        "thinking_mode": true
    }
}

res = requests.post(url, headers=headers, json=payload, timeout=120)
print(res.status_code, res.json())
{
    "model": "phuocanh421994/Qwen-Image-2.0-Pro",
    "prompt": "A young woman taking a casual selfie outdoors, natural lighting, warm tones, soft bokeh background with greenery",
    "parameters": {
        "size": "2048*2048",
        "n": 1,
        "watermark": false,
        "thinking_mode": true
    }
}
クイックテスト

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

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