Vidu (Shengshu) Image Q2 delivers 1080p-to-4K image generation with strong multi-reference and editing capability, exposed through NovAI's OpenAI-compatible endpoint — async upstream polled to completion, billed by real token usage.
curl https://aiapi-pro.com/v1/images/generations \
-H "Authorization: Bearer $NOVAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "vidu-image-q2",
"prompt": "a detailed painting of a butterfly on a flower",
"size": "1024x1024",
"n": 1
}'
from openai import OpenAI
client = OpenAI(
base_url="https://aiapi-pro.com/v1",
api_key="YOUR_NOVAI_API_KEY",
)
resp = client.images.generate(
model="vidu-image-q2",
prompt="a detailed painting of a butterfly on a flower",
size="1024x1024",
n=1,
)
print(resp.data[0].url)
Billed by real upstream token usage (usage.total_tokens). The from ~$0.029 figure is a reference price at base resolution and scales with resolution & reference-image count.
Zero platform fee. Credits never expire. OpenAI-compatible API.
Sign Up Free