Last refreshed 2026-05-22. Next refresh: weekly.
Why use Recraft V4 on Vercel AI Gateway?
Vercel AI Gateway offers Recraft V4 with competitive pricing. Vercel AI Gateway is a unified AI proxy providing a single OpenAI-compatible API endpoint to 275+ models from 25+ providers including Anthropic, OpenAI, Google, Meta, Mistral, DeepSeek, xAI, Alibaba, Amazon, ByteDance, Cohere, MiniMax, MoonshotAI, KwaiPilot, Black Forest Labs, Recraft, Voyage AI, NVIDIA, and more.
Setup recipe
Python + curlpip install openaiexport AI_GATEWAY_API_KEY=...import os
from openai import OpenAI
client = OpenAI(
api_key=os.environ["AI_GATEWAY_API_KEY"],recraft/recraft-v4Request example
import os
from openai import OpenAI
client = OpenAI(
api_key=os.environ["AI_GATEWAY_API_KEY"],
base_url="https://ai-gateway.vercel.sh/v1"
)
response = client.chat.completions.create(
model="recraft/recraft-v4",
messages=[{"role": "user", "content": "Hello"}]
)
print(response.choices[0].message.content)Gotchas
- Use provider model ID "recraft/recraft-v4", not the LLMReference slug "recraft-4".
- creator/model-name e.g. kwaipilot/kat-coder-pro-v2
- The examples expect AI_GATEWAY_API_KEY; rename it only if your application config maps the new variable.
Pricing
| Type | Rate |
|---|---|
| Image input | $0.04 |
Capabilities
About Recraft V4
Recraft V4 by Recraft AI. Released February 2025, successor to the award-winning V3. Improved design coherence and image quality. Available via Fal API (fal-ai/recraft/v4/text-to-image).
FAQ
What API model ID do I use for Recraft V4 on Vercel AI Gateway?
Use the model ID recraft/recraft-v4 when calling Vercel AI Gateway's API.
Who created Recraft V4?
Recraft V4 was created by Recraft as part of the Recraft model family.
Is Recraft V4 open source?
Recraft V4 is not open source; the seed data lists it as proprietary.