← All models
Recraft: Recraft 4.1 FlashNEW
recraft/recraft-v4.1-flashimages
Recraft V4.1 Flash is the speed and cost tier of the V4.1 family: ~1K raster images in about 1.5 seconds at roughly a fifth of the cost of Recraft V4.1. Suited for rapid iteration, prototyping and high-volume generation where turnaround matters more than peak fidelity.
Price
Released
Sep 23, 2026
Parameters
promptrequiredaspect_ratio1:13:44:39:1616:9How to use via API
import base64
from openai import OpenAI
client = OpenAI(base_url="https://api.mixen.ai/v1", api_key="mxn-...")
img = client.images.generate(
model="recraft/recraft-v4.1-flash",
prompt="Милый кот-космонавт на Марсе",
# размер задаёт aspect_ratio (у модели нет size-ручки): extra_body={"aspect_ratio": "1:1"}
n=1,
)
with open("image.png", "wb") as f:
f.write(base64.b64decode(img.data[0].b64_json))
