Qwen
Qwen 图像

phuocanh421994/Qwen_Image_3.0_Pro

Model ID: phuocanh421994/Qwen_Image_3.0_Pro
系列
Qwen
上下文
未填写
每次请求最低收费
0.03 人民币
请求数
5
成功率
40.0%
Tokens
358.7K
可用率 40.00%
24 小时前现在
7 天前现在

定价

输入 / 1M token
0.03 人民币
输出 / 1M token
0.03 人民币
每次请求
0.03 人民币
每次请求最低收费
0.03 人民币
费用估算
预估总计 0 人民币
平均 / 请求 0 人民币

按标价估算,启用缓存后通常更便宜。

支持的 Endpoint
https://api.xah.io/v1/images/generations
方法 POST · application/json
认证 Bearer token (API key)
限流 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 条评价
正在加载评价...
联系支持
我们随时为您提供帮助