PixVerse API v2 updates:
- Image generation with 7 models — surprisingly fast, ~3s to ~60s per image
- Pro+ plans include unlimited image generation in Relax Mode at the same fast speeds, see PixVerse subscription plans as of March 9, 2026
- Nano Banana models have relaxed content moderation — photos of minors or famous people supported as reference images
Table of contents
Text-to-image via POST images/create
nano-banana-pro • 1080p • auto aspect ratio
curl --location 'https://api.useapi.net/v2/pixverse/images/create' \
--header 'Authorization: Bearer user:12345-…' \
--header 'Content-Type: application/json' \
--data '{
"prompt": "A visually stunning, highly detailed, absurdly comical vertical 9:16 photograph. In the center, a stunningly beautiful young woman with a flawless, glowing, fit figure is wearing a vibrant, tiny tropical bikini swimsuit. Bizarrely, on her head, she is wearing a professional white beekeeper'\''s veil and helmet. She has a confident, upbeat posture as she pulls a wooden honeycomb frame, dripping with thick, glowing golden honey, out of a wooden beehive box in a sunlit, blooming meadow. In the top-left corner, a swarm of bees is hovering in a disorganized, confused cluster, completely puzzled and unsure of what to do. In the extreme top-right corner, there is a giant, macro close-up of a single fuzzy honeybee looking directly into the camera lens with a hilariously exaggerated, shocked, wide-open expression of pure disbelief. Bright, cinematic summer sunlight, highly aesthetic body proportions mixed with an odd, crazy situation, perfectly photorealistic, rich vibrant colors, masterpiece.",
"model": "nano-banana-pro",
"quality": "1080p",
"aspect_ratio": "auto"
}'

Model comparison • 1080p–1440p • 16:9
Same prompt across all models:
curl --location 'https://api.useapi.net/v2/pixverse/images/create' \
--header 'Authorization: Bearer user:12345-…' \
--header 'Content-Type: application/json' \
--data '{
"prompt": "A visually breathtaking, beautifully absurd, single-frame street photography shot on a sunny city sidewalk. In the center midground, a gorgeous, stunningly beautiful young woman with a soft, elegant feminine figure, a flawless glowing complexion, and a radiant, upbeat laugh is wearing a tiny, elegant black-lace string bikini. She is effortlessly operating a heavy, rattling, bright yellow pneumatic jackhammer, busting up the concrete pavement while dust and debris fly around her beautifully. In the extreme bottom-right foreground of the exact same scene, standing on the sidewalk and photobombing the camera lens, is a huge forced-perspective close-up of a city squirrel. The squirrel is holding a half-eaten hotdog, staring directly into the lens with bulging, mind-blown eyes, completely frozen in comical disbelief. Single cohesive image, seamless depth of field, dynamic lighting, crazy situational comedy, delicate feminine features contrasting with heavy machinery, masterpiece.",
"model": "<model>",
"quality": "<quality>",
"aspect_ratio": "16:9"
}'
nano-banana-pro • 1080p (~60s):

nano-banana • 1080p (~10s):

seedream-5.0-lite • 1440p (~30s):

seedream-4.5 • 1440p (~15s):

seedream-4.0 • 1080p (~10s):

qwen-image • 1080p (~3s):

Image-to-image (reference images)
nano-banana-2 • 1 reference • 1080p • 16:9
Reference image (classic 1920s BMW motorcycle)
curl --location 'https://api.useapi.net/v2/pixverse/images/create' \
--header 'Authorization: Bearer user:12345-…' \
--header 'Content-Type: application/json' \
--data '{
"prompt": "Transform this classic motorcycle into a futuristic cyberpunk hover bike with glowing neon underglow and holographic dashboard",
"model": "nano-banana-2",
"quality": "1080p",
"aspect_ratio": "16:9",
"image_path_1": "<path from POST files>"
}'

seedream-4.5 • 1 reference • 1440p • 16:9
Reference image (Golden Gate Bridge from Baker Beach)
curl --location 'https://api.useapi.net/v2/pixverse/images/create' \
--header 'Authorization: Bearer user:12345-…' \
--header 'Content-Type: application/json' \
--data '{
"prompt": "Render this iconic bridge scene as an impressionist oil painting at sunset with dramatic purple and orange sky reflections on the water",
"model": "seedream-4.5",
"quality": "1440p",
"aspect_ratio": "16:9",
"image_path_1": "<path from POST files>"
}'

seedream-4.0 • 2 references • 1080p • 16:9
Reference image 1 (vintage Edwardian woman portrait)
Reference image 2 (classic BMW motorcycle)
curl --location 'https://api.useapi.net/v2/pixverse/images/create' \
--header 'Authorization: Bearer user:12345-…' \
--header 'Content-Type: application/json' \
--data '{
"prompt": "An elegant Edwardian woman riding a gleaming vintage motorcycle through a misty countryside road at dawn",
"model": "seedream-4.0",
"quality": "1080p",
"aspect_ratio": "16:9",
"image_path_1": "<path from POST files>",
"image_path_2": "<path from POST files>"
}'
