---
title: "Ideogram V3 ideogram-v3-edit API — Pricing, code samples | RunAPI"
url: "https://runapi.ai/models/ideogram-v3/edit.md"
canonical: "https://runapi.ai/models/ideogram-v3/edit.md"
locale: "en"
model: "Ideogram V3"
provider: "Ideogram"
variant_id: "ideogram-v3-edit"
sdk_model_id: "ideogram-v3-edit"
modality: "image"
price_from_cents: 7
billing_unit: "call"
status: "active"
---

# Ideogram V3 ideogram-v3-edit API

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

## Pricing

**$0.070** per call

Failed generations are not charged

## Spec sheet

| Field | Value |
|---|---|
| Model ID | `ideogram-v3-edit` |
| Provider | Ideogram |
| Modality | image |
| Task type | asynchronous |
| Billing unit | call |
| API endpoint | `/api/v1/ideogram_v3/edit_image` |
| Status | active |

## Install

```sh
npm install @runapi.ai/ideogram-v3
```

## Quickstart

```sh
curl -X POST https://api.runapi.ai/api/v1/ideogram_v3/edit_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "model": "ideogram-v3-edit", "prompt": "..." }'
```

```js
import RunAPI from "@runapi.ai/ideogram-v3";

const client = new RunAPI(process.env.RUNAPI_KEY);
const task = await client.create({
  model: "ideogram-v3-edit",
  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 Ideogram V3 variants:

- [ideogram-v3-remix](https://runapi.ai/models/ideogram-v3/remix.md) — `remix` · $0.070
- [ideogram-v3-text-to-image](https://runapi.ai/models/ideogram-v3/text-to-image.md) — `text-to-image` · $0.070
