“”
Recraft's image enhancement model that makes images sharper and cleaner, suitable for web use or print-ready materials
Details
recraft-crisp-upscale
Starting from
Prices shown are in USD
See all providersProviders & Pricing (2)
Recraft Crisp Upscale is available from 2 providers, with per-image pricing starting at $0.004 through fal.ai.
Recraft Crisp Upscale API OpenAI-compatible
https://api.lumenfall.ai/openai/v1
recraft-crisp-upscale
Code Examples
Upscale
/v1/images/editscurl -X POST \
https://api.lumenfall.ai/openai/v1/images/edits \
-H "Authorization: Bearer $LUMENFALL_API_KEY" \
-F "model=recraft-crisp-upscale" \
-F "[email protected]" \
-F "prompt=Add a starry night sky to this image" \
-F "size=1024x1024"
# Response:
# { "created": 1234567890, "data": [{ "url": "https://...", "revised_prompt": "..." }] }
import OpenAI from 'openai';
import fs from 'fs';
const client = new OpenAI({
apiKey: 'YOUR_API_KEY',
baseURL: 'https://api.lumenfall.ai/openai/v1'
});
const response = await client.images.edit({
model: 'recraft-crisp-upscale',
image: fs.createReadStream('source.png'),
prompt: 'Add a starry night sky to this image',
size: '1024x1024'
});
// { created: 1234567890, data: [{ url: "https://...", revised_prompt: "..." }] }
console.log(response.data[0].url);
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://api.lumenfall.ai/openai/v1"
)
response = client.images.edit(
model="recraft-crisp-upscale",
image=open("source.png", "rb"),
prompt="Add a starry night sky to this image",
size="1024x1024"
)
# { created: 1234567890, data: [{ url: "https://...", revised_prompt: "..." }] }
print(response.data[0].url)
Parameter Normalization
How we handle parameters across different providers
Not every provider speaks the same language. When you send a parameter, we handle it in one of four ways depending on what the model supports:
| Behavior | What happens | Example |
|---|---|---|
passthrough |
Sent as-is to the provider | style, quality |
renamed |
Same value, mapped to the field name the provider expects | prompt |
converted |
Transformed to the provider's native format | size |
emulated |
Works even if the provider has no concept of it | n, response_format |
Parameters we don't recognize pass straight through to the upstream API, so provider-specific options still work.
Recraft Crisp Upscale Benchmarks
Recraft Crisp Upscale is ranked #2 in Image Upscaling with an Elo of 1146 on the Lumenfall Arena, where real users pick the better image in blind comparisons. These rankings are based on 4 blind-vote competitions.
Image Upscaling Landscape
Elo vs Cost
Elo vs Speed
Speed data is still warming up
We only have enough recent requests for Crystal Upscaler (41.4s average).
Competition Results
Uncategorized
“”
“”
“”
Top Matchups
See how Recraft Crisp Upscale performs head-to-head against other AI models, ranked by community votes in blind comparisons.
Gallery
View all 4 imagesRecraft Crisp Upscale FAQ
How much does Recraft Crisp Upscale cost?
Recraft Crisp Upscale starts at $0.004 per image through Lumenfall. Pricing varies by provider. Lumenfall does not add any markup to provider pricing.
How do I use Recraft Crisp Upscale via API?
You can use Recraft Crisp Upscale through Lumenfall's OpenAI-compatible API. Send requests to the unified endpoint with model ID "recraft-crisp-upscale". Code examples are available in Python, JavaScript, and cURL.
Which providers offer Recraft Crisp Upscale?
Recraft Crisp Upscale is available through fal.ai and Replicate on Lumenfall. Lumenfall automatically routes requests to the best available provider.
Try Recraft Crisp Upscale in Playground
Generate images with custom prompts — no API key needed.