Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.kymaapi.com/llms.txt

Use this file to discover all available pages before exploring further.

Overview

imagen-4-fast is Google’s fastest Imagen 4 variant — optimised for quick drafts, social previews, and rapid iteration over hero-fidelity work. Sync API on Vertex AI, blob-hosted output, no async polling. Lives in the same family as imagen-4 (default) and imagen-4-ultra (premium). Pick by latency + cost; the underlying style language is the same.

Specs

FieldValue
Model IDimagen-4-fast
CreatorGoogle
BackendVertex AI (imagen-4.0-fast-generate-001, us-central1)
Best forDrafts, social previews, rapid iteration
Aspect ratios1:1 (default), 3:4, 4:3, 16:9, 9:16
Sample count n1–4
Pricing modeFlat per image
Default latency~5–10s
OutputBlob-hosted URL (Vercel CDN)

Pricing

Flat per-image. List = provider cost × 1.35.
VariantProvider costKyma list
imagen-4-fast$0.020$0.027
Live source: GET https://kymaapi.com/v1/pricing.

Compared to other image models on Kyma

Strengthimagen-4-fastimagen-4imagen-4-ultranano-banana
Cheapest Imagen★★★★★★★★★★★n/a
Photoreal humans★★★★★★★★★★★★★★★
Print fidelity★★★★★★★★★★★★★
Speed★★★★★★★★★★★★★★★★★
Edit-modeyes

Use this when

  • You need many quick drafts to iterate prompts cheaply.
  • The output is a social preview, draft mockup, or low-resolution asset.
  • Speed beats fidelity.

Pick something else when

Example

curl -X POST https://kymaapi.com/v1/images/generations \
  -H "Authorization: Bearer $KYMA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "imagen-4-fast",
    "prompt": "A minimalist Scandinavian living room with morning light, soft pastels",
    "size": "16:9",
    "n": 1
  }'
The endpoint is async — POST returns 202 with a job_id; poll GET /v1/jobs/{id} until status is succeeded. The completed job’s output.url is a Vercel blob URL on Kyma’s CDN.