Image
How to Use Image Generation Models
Example: Using Google Gemini 3 Pro Image
curl --location 'https://cloud.vtrix.ai/model/v1/generation' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"model": "google_gemini3_pro_image",
"input": [
{
"params": {
"prompt": "example_prompt",
"image_urls": [
"https://example.com/image.jpg"
],
"aspect_ratio": "1:1",
"resolution": "1K"
}
}
]
}'Last updated