---
title: "Imagen 4 imagen-4-ultra API — Pricing, code samples | RunAPI"
url: "https://runapi.ai/models/imagen-4/ultra.md"
canonical: "https://runapi.ai/models/imagen-4/ultra.md"
locale: "en"
model: "Imagen 4"
provider: "Google"
variant_id: "imagen-4-ultra"
sdk_model_id: "imagen-4-ultra"
modality: "image"
price_from_cents: 12
billing_unit: "call"
status: "active"
---

# Imagen 4 imagen-4-ultra API

Same API, same SDK — switch variants by changing one parameter.

## Pricing

**$0.120** per call

Failed generations are not charged

## Spec sheet

| Field | Value |
|---|---|
| Model ID | `imagen-4-ultra` |
| Provider | Google |
| Modality | image |
| Task type | asynchronous |
| Billing unit | call |
| API endpoint | `/api/v1/imagen_4/text_to_image` |
| Status | active |

## Install

```sh
npm install @runapi.ai/imagen-4
```

## Quickstart

```sh
curl -X POST https://api.runapi.ai/api/v1/imagen_4/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "model": "imagen-4-ultra", "prompt": "..." }'
```

```js
import RunAPI from "@runapi.ai/imagen-4";

const client = new RunAPI(process.env.RUNAPI_KEY);
const task = await client.create({
  model: "imagen-4-ultra",
  prompt: "...",
});
```

## FAQ

### Is the model ID stable across versions?

RunAPI keeps the model ID stable and handles compatible version refreshes without changing your request shape.

### What&#39;s the rate limit on this variant?

Per-key rate limits scale with usage tier. See pricing page for current limits.

### Can I switch variants later?

Yes — variant is a flag. Switch by changing the model parameter.

### Does it stream?

Where streaming is available, RunAPI streams end-to-end.

### Where do I report quality issues?

Open an issue on the public GitHub repo or email support.


## Related

Other Imagen 4 variants:

- [imagen-4](https://runapi.ai/models/imagen-4/imagen-4.md) — `imagen-4` · $0.080
- [imagen-4-fast](https://runapi.ai/models/imagen-4/fast.md) — `fast` · $0.040
- [imagen-4-pro-image-to-image](https://runapi.ai/models/imagen-4/pro-image-to-image.md) — `pro-image-to-image` · $0.180
