GAN-based super-resolution model that upscales images 4x with high fidelity, optimized for natural images and photographs
Example outputs coming soon
Details
aura-sr
Providers & Pricing (1)
AuraSR is available exclusively through fal.ai, starting at $0.001/image.
fal/aura-sr
Output
Pricing Notes (1)
- • Billed per compute second via the x-fal-billable-units response header.
aurasr API OpenAI-compatible
https://api.lumenfall.ai/openai/v1
aura-sr
Code Examples
Upscale
/v1/images/editscurl -X POST \
https://api.lumenfall.ai/openai/v1/images/edits \
-H "Authorization: Bearer $LUMENFALL_API_KEY" \
-F "model=aura-sr" \
-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: 'aura-sr',
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="aura-sr",
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 Reference
Media Inputs
| Parameter | Type | Description | Modes |
|---|---|---|---|
image
|
file |
Required.
Input image to upscale
Single image per request.
|
Upscale
|
scale_factor
|
number | Required. Factor by which to upscale the image |
Upscale
|
Output & Format
| Parameter | Type | Description | Modes |
|---|---|---|---|
response_format
|
string |
How to return the image
url
b64_json
Default:
"url" |
Upscale
|
output_format
|
string |
Output image format
png
jpeg
gif
webp
avif
Gateway converts to requested format if provider doesn't support it natively.
|
Upscale
|
output_compression
|
integer | Compression level for lossy formats (JPEG, WebP, AVIF) |
Upscale
|
n
|
integer |
Number of images to generate
Default:
1Gateway generates multiple images in parallel even if provider only supports 1.
|
Upscale
|
Additional Parameters
Provider-specific passthrough fields, available only when the request is routed to the listed provider.
| Parameter | Type | Description | Modes |
|---|---|---|---|
|
fal
|
|||
checkpoint
|
string |
AuraSR checkpoint version to use
v1
v2
|
Upscale
|
overlapping_tiles
|
boolean | Whether to use overlapping tiles for higher quality at cost of speed |
Upscale
|
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.
AuraSR FAQ
How much does AuraSR cost?
AuraSR starts at $0.001 per image through Lumenfall. Pricing varies by provider. Lumenfall does not add any markup to provider pricing.
How do I use AuraSR via API?
You can use AuraSR through Lumenfall's OpenAI-compatible API. Send requests to the unified endpoint with model ID "aura-sr". Code examples are available in Python, JavaScript, and cURL.
Which providers offer AuraSR?
AuraSR is available through fal.ai on Lumenfall. Lumenfall automatically routes requests to the best available provider.
Try AuraSR in Playground
Generate images with custom prompts — no API key needed.