Z Image
Fast photorealistic AI image generation with Alibaba Z Image through VicSee API. Text-to-image with multiple aspect ratios, only 2 credits.
Pricing
| Mode | Credits | Price (Pro Yearly) | Price (Pro Monthly) |
|---|---|---|---|
| Generate | 2 | $0.012 | $0.024 |
Credits are deducted only on successful generation.
Endpoint
POST https://vicsee.com/api/v1/generateSee Authentication for API key setup.
Text to Image
Generate photorealistic images from text descriptions.
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| model | string | Yes | z-image-text-to-image |
| input.prompt | string | Yes | Description of the image to generate (max 1000 chars) |
| input.aspect_ratio | string | No | 1:1, 4:3, 3:4, 16:9, 9:16 (default: 1:1) |
Example Request
curl -X POST https://vicsee.com/api/v1/generate \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "z-image-text-to-image",
"input": {
"prompt": "A serene mountain landscape at sunset, golden light reflecting on a calm lake, photorealistic",
"aspect_ratio": "16:9"
}
}'Response
Success (200)
{
"taskId": "task_abc123xyz",
"status": "pending",
"model": "z-image-text-to-image",
"createdAt": "2026-02-04T12:00:00Z"
}Poll for completion using Tasks API.
Task Complete
{
"taskId": "task_abc123xyz",
"status": "completed",
"output": {
"url": "https://cdn.vicsee.com/outputs/image_xyz.png",
"width": 1024,
"height": 1024,
"format": "png"
}
}Notes
- Output resolution is fixed at 1024x1024 for 1:1 aspect ratio
- Prompt max length is 1000 characters
- Generation time is approximately 10 seconds
- Text-to-image only (no image-to-image or upscale)
Related Models
- Nano Banana - Google Gemini-powered image generation with editing and upscaling
- FLUX 2 - Premium image generation up to 2K resolution
FLUX 2
Generate stunning 4MP images with FLUX 2 from Black Forest Labs through VicSee API. Multi-reference consistency, superior text rendering, Pro and Flex modes. 1-4 credits.
Tasks
Poll generation task status and download AI-generated videos and images. Real-time progress updates, error handling, and direct download URLs for all completed generations.