ApiframeApiframe Docs
Image GenerationImagen

Imagen 4

Google's Imagen 4 flagship model with superior detail, typography, and style versatility.

Use in Apiframe Studio

POST /v2/images/generatemodel: "imagen-4"

Google's Imagen 4 flagship model featuring enhanced text rendering, fine detail clarity for fabrics, water droplets, and fur, and support for various aspect ratios up to 2K resolution.

See Image Generation overview for common request fields, response format, and error codes.

Model-specific parameters

ParameterTypeDescription
imagenParams.aspect_ratiostringAspect ratio. Values: "1:1" (default), "9:16", "16:9", "3:4", "4:3"
imagenParams.output_formatstringOutput format. Values: "jpg" (default), "png"
imagenParams.image_sizestringImage resolution. Values: "1K" (default), "2K"

Credit cost

Credits per generation
4

Code examples

curl -X POST https://api.apiframe.ai/v2/images/generate \
  -H "X-API-Key: afk_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "A serene shallow pool among creek rocks with koi fish swimming under sunlight, lush aquatic plants visible beneath the surface",
    "model": "imagen-4",
    "imagenParams": {
      "aspect_ratio": "16:9",
      "image_size": "2K"
    }
  }'
import requests

response = requests.post(
    "https://api.apiframe.ai/v2/images/generate",
    headers={
        "X-API-Key": "afk_your_api_key_here",
        "Content-Type": "application/json",
    },
    json={
        "prompt": "A serene shallow pool among creek rocks with koi fish swimming under sunlight, lush aquatic plants visible beneath the surface",
        "model": "imagen-4",
        "imagenParams": {
            "aspect_ratio": "16:9",
            "image_size": "2K",
        },
    },
)
print(response.json())
const response = await fetch("https://api.apiframe.ai/v2/images/generate", {
  method: "POST",
  headers: {
    "X-API-Key": "afk_your_api_key_here",
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    prompt: "A serene shallow pool among creek rocks with koi fish swimming under sunlight, lush aquatic plants visible beneath the surface",
    model: "imagen-4",
    imagenParams: { aspect_ratio: "16:9", image_size: "2K" },
  }),
});
console.log(await response.json());

Try it

POST/v2/images/generateTry it

On this page