Image
SeaCloud provides various image generation models including Stable Diffusion, FLUX, Google Gemini, and more. Each model has its own dedicated API endpoint and parameters.
Important: Each image generation model has its own API endpoint and parameter structure. Please visit the Models page to see the calling method for specific models.
How to Use Image Generation Models
3
Example: Using Google Gemini 3 Pro Image
Here is an example of generating an image using Google Gemini 3 Pro Image:
curl --location 'https://cloud.seaart.ai/api/v1/google_gemini3_pro_image/generate' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"model": "google_gemini3_pro_image",
"input": [
{
"params": {
"prompt": "A beautiful sunset over the ocean with vibrant colors",
"aspect_ratio": "1:1",
"resolution": "1K"
}
}
]
}'Recommended: Visit the Models page to see all available image generation models, each with complete API examples.
Last updated