Qwen
Qwen 이미지

phuocanh421994/Qwen_Image_3.0_Pro

모델 ID: phuocanh421994/Qwen_Image_3.0_Pro
계열
Qwen
컨텍스트
아직 업데이트되지 않음
최소 요금 / 요청
7.058 ₩
요청 수
126
성공
77.8%
토큰
9.21M
업타임
24시간 전지금
7일 전지금

가격표

입력 / 1M 토큰
7.058 ₩
출력 / 1M 토큰
7.058 ₩
요청당
7.058 ₩
최소 요금 / 요청
7.058 ₩
가격 변경 기록

적용되었던 가격 수준입니다. "현재"로 표시된 행이 적용 중인 가격입니다.

현재 시작일 07/08/2026 - 13:42:25
입력 / 1M 토큰7.058 ₩ 출력 / 1M 토큰7.058 ₩ 요청당7.058 ₩ 최소 요금 / 요청7.058 ₩
비용 예상
예상 합계 0 ₩
요청당 평균 0 ₩

공표된 가격 기준의 예상치입니다. 캐시가 있으면 대개 더 저렴합니다.

지원 엔드포인트
https://api.xah.io/v1/images/generations
메서드 POST · application/json
인증 Bearer 토큰(API 키)
Rate limit 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 리뷰
리뷰를 불러오는 중...
고객 지원 문의
언제든지 도와드릴 준비가 되어 있습니다