Skip to main content
Qwen Image Plus is a text-to-image model available through Starrise AI. The API is synchronous — it automatically polls the upstream asynchronous task and directly returns the final image URL.

Key Capabilities

  • Text-to-image — Generate images from text descriptions
  • Flexible sizes — Specify output resolution via size
  • URL or Base64 — Choose the return format via response_format

Quick Example

curl https://ai.alad.com/v1/images/generations \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen-image-plus",
    "prompt": "A cute cat in Ghibli style",
    "size": "1024x1024",
    "response_format": "url"
  }'

Parameters

ParameterTypeRequiredDescription
modelstringYesMust be qwen-image-plus
promptstringYesImage description text
nintegerNoNumber of images to generate, default 1
sizestringNoOutput size, e.g. 1024x1024
response_formatstringNourl (default) or b64_json

Response Fields

FieldDescription
data[].urlImage download URL (valid ~24 hours)
data[].b64_jsonBase64-encoded image (only returned when response_format=b64_json)
data[].revised_promptActual prompt after AI expansion
createdCreation timestamp

API Reference

View the interactive API Playground for Qwen Image Plus.