# Recraft V4.1 Flash

ID: recraft/recraft-v4.1-flash
Type: image generation
Vendor: Recraft
Released: 2026-09-23
Description: Recraft V4.1 Flash is the fast, low-cost tier of Recraft V4.1 for text-to-image drafts at about 1K.

## Modes and inputs
- Text → Image (`txt->img`)
  - Prompt only, no input images

## Output
- Aspect ratios: 1:1, 2:1, 1:2, 3:2, 2:3, 4:3, 3:4, 5:4, 4:5, 6:10, 14:10, 10:14, 16:9, 9:16. Other ratios snap to the closest one. Without `size` (or with `"auto"`), Mynth picks a ratio for the prompt.
- 4K: no
- Negative prompt: not supported (dropped, no error)

## Pricing (USD)
- Per image: $0.0070
- Only successful results are charged.

## Usage
Set the request's `model` field to `recraft/recraft-v4.1-flash`. Always pass it explicitly.

TypeScript SDK, Text → Image:

```ts
import Mynth from "@mynthio/sdk";

const mynth = new Mynth();

const task = await mynth.image.generate({
  model: "recraft/recraft-v4.1-flash",
  prompt: "A lighthouse at dusk, 35mm film",
  size: "16:9",
});

console.log(task.urls[0]);
```

REST (cURL), Text → Image:

```bash
curl https://api.mynth.io/image/generate \
  -H "Authorization: Bearer $MYNTH_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "recraft/recraft-v4.1-flash",
    "prompt": "A lighthouse at dusk, 35mm film",
    "size": "16:9"
  }'
```

CLI, Text → Image:

```bash
npx @mynthio/cli image generate \
  -m recraft/recraft-v4.1-flash \
  -p "A lighthouse at dusk, 35mm film" \
  -s 16:9
```

## Links
- Model page: https://mynth.io/models/recraft%2Frecraft-v4.1-flash
- Playground: https://mynth.io/playground?_m=recraft%2Frecraft-v4.1-flash
- Vendor page: https://www.recraft.ai/docs/recraft-models/recraft-v4-1
- API docs (image generation request): https://docs.mynth.io/reference/image-generation-request
- Quickstart: https://docs.mynth.io/quickstart
- SDK (JS/TS): https://docs.mynth.io/sdk/js-ts/overview
- This page as JSON: https://mynth.io/models/recraft%2Frecraft-v4.1-flash.json

## More from Recraft
- Recraft V4 [recraft/recraft-v4]: https://mynth.io/models/recraft%2Frecraft-v4.md
- Recraft V4 Pro [recraft/recraft-v4-pro]: https://mynth.io/models/recraft%2Frecraft-v4-pro.md

## Similar models
- Z-Image Turbo [tongyi-mai/z-image-turbo]: https://mynth.io/models/tongyi-mai%2Fz-image-turbo.md
- FLUX.1 Dev [black-forest-labs/flux.1-dev]: https://mynth.io/models/black-forest-labs%2Fflux.1-dev.md
- Prefect Pony XL LoRA [goofy-ai/prefect-pony-xl-lora]: https://mynth.io/models/goofy-ai%2Fprefect-pony-xl-lora.md
- FLUX.1 Schnell [black-forest-labs/flux-1-schnell]: https://mynth.io/models/black-forest-labs%2Fflux-1-schnell.md
- One obsession [maxfeifei8/one-obsession]: https://mynth.io/models/maxfeifei8%2Fone-obsession.md
