Imagen 4 Fast

Model Information

Display Name: Imagen 4 Fast

API Model ID: google/imagen-4-fast

Category: Text To Image

Description: Imagen 4 Fast is the quickest variant of Google's Imagen 4 family. Generates high-quality photorealistic and artistic images at the lowest cost with the fastest generation speed. **Key Features:** - Text-to-image generation - Resolutions: 1024px and 2048px - Aspect ratios: 1:1, 3:4, 4:3, 9:16, 16:9 - Up to 4 images per request - Fastest generation in the Imagen 4 family - English prompts (max 480 tokens) **Capabilities:** - Photorealistic image generation - Artistic and stylized imagery - Product visualization - Marketing and advertising assets - Social media content creation - Concept art and illustrations - Multiple output formats (PNG, JPEG, WebP) **Best For:** - Rapid prototyping and iteration - High-volume image generation - Cost-sensitive applications - Quick visual concepts - Batch image creation **Technical Specs:** - Model ID: imagen-4.0-fast-generate-001 - Input: Text prompt (English, max 480 tokens) - Output: PNG, JPEG, or WebP image - Max Resolution: 2048px - Batch Size: Up to 4 images - API: Google AI Predict endpoint - Status: GA (sunset June 24, 2026)

How to Use This Model

To use Imagen 4 Fast via the HInow.ai API, use the model ID: google/imagen-4-fast

API Request Example (Chat/Text)


POST https://api.hinow.ai/v1/chat/completions
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "google/imagen-4-fast",
  "messages": [
    {"role": "user", "content": "Your message here"}
  ]
}
              

API Request Example (Image Generation)


POST https://api.hinow.ai/v1/images
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "google/imagen-4-fast",
  "prompt": "Your image description here"
}
              

Pricing

  • total: $0.026

Available Parameters

  • aspect_ratio: Image aspect ratio. Default: 1:1 (Options: 1:1, 3:4, 4:3, 9:16, 16:9)
  • output_format: Output image format. Default: png (Options: png, jpeg, webp)

Quick Reference

To use this model, set: "model": "google/imagen-4-fast"

Featured: No

Documentation: https://hinow.ai/models/google/imagen-4-fast

API Endpoint: https://api.hinow.ai/v1

Back to Models

Imagen 4 Fast

google/imagen-4-fast

$0.026
per image

About

Imagen 4 Fast is the quickest variant of Google's Imagen 4 family. Generates high-quality photorealistic and artistic images at the lowest cost with the fastest generation speed.

Key Features:

  • Text-to-image generation
  • Resolutions: 1024px and 2048px
  • Aspect ratios: 1:1, 3:4, 4:3, 9:16, 16:9
  • Up to 4 images per request
  • Fastest generation in the Imagen 4 family
  • English prompts (max 480 tokens)

Capabilities:

  • Photorealistic image generation
  • Artistic and stylized imagery
  • Product visualization
  • Marketing and advertising assets
  • Social media content creation
  • Concept art and illustrations
  • Multiple output formats (PNG, JPEG, WebP)

Best For:

  • Rapid prototyping and iteration
  • High-volume image generation
  • Cost-sensitive applications
  • Quick visual concepts
  • Batch image creation

Technical Specs:

  • Model ID: imagen-4.0-fast-generate-001
  • Input: Text prompt (English, max 480 tokens)
  • Output: PNG, JPEG, or WebP image
  • Max Resolution: 2048px
  • Batch Size: Up to 4 images
  • API: Google AI Predict endpoint
  • Status: GA (sunset June 24, 2026)

Capabilities

Text To Image

Parameters

aspect_ratio

Image aspect ratio. Default: 1:1

1:13:44:39:1616:9
output_format

Output image format. Default: png

pngjpegwebp

Code Examples

curl -X POST https://api.hinow.ai/v1/images \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HINOW_API_KEY" \
  -d '{
    "model": "google/imagen-4-fast",
    "prompt": "A beautiful sunset over mountains",
    "parameters": {
      "aspect_ratio": "1:1",
      "output_format": "png"
    }
  }'