Qwen
Qwen Text

adminsgehdt/qwen-image-max

Model ID: adminsgehdt/qwen-image-max
Family
Qwen
Context
Not specified
Per request
0.0439 $
Requests
67
Success
95.5%
Tokens
33.4K
Uptime
24h agoNow
7 days agoNow

Pricing

Per request
0.0439 $
Price history

Price levels previously applied. The row tagged "current" is the live price.

Past Since 04/08/2026 - 13:15:09
Per request0.0439 $ Cache read / 1M tokens0.004 $ Cache write / 1M tokens0.03 $
Current Since 07/09/2026 - 11:37:47
Per request0.0439 $
Supported endpoints
https://api.xah.io/v1/images/edits
Method POST · application/json
Auth Bearer token (API key)
API kinds Text

Share

curl 'https://api.xah.io/v1/images/edits' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -F 'model=adminsgehdt/qwen-image-max' \
  -F 'prompt=Make the reference image brighter' \
  -F 'image=@./reference-1024.png'
// Node.js 18+ / Browser
const form = new FormData();
form.append('model', 'adminsgehdt/qwen-image-max');
form.append('prompt', 'Make the reference image brighter');
form.append('image', file); // File/Blob from ./reference-1024.png
const res = await fetch('https://api.xah.io/v1/images/edits', {
  method: 'POST',
  headers: { 'Authorization': 'Bearer YOUR_API_KEY' },
  body: form
});
console.log(await res.json());
import requests

url = 'https://api.xah.io/v1/images/edits'
headers = {'Authorization': 'Bearer YOUR_API_KEY'}
data = {
    "model": "adminsgehdt/qwen-image-max",
    "prompt": "Make the reference image brighter"
}
with open('./reference-1024.png', 'rb') as media:
    files = {'image': media}
    res = requests.post(url, headers=headers, data=data, files=files, timeout=180)
print(res.status_code, res.json())
{
    "model": "adminsgehdt/qwen-image-max",
    "prompt": "Make the reference image brighter",
    "_file_field": "image",
    "_file_path": "./reference-1024.png"
}
Try it

This model does not support text chat, so it can\'t be tried here.

Reviews & comments
0.0 / 0 reviews
Loading reviews...
Contact Support
We are always ready to help you