# Bria Creative Upscale > Bria's creative upscaler that increases resolution up to 10 megapixels while enhancing texture and detail ## Quick Reference - Model ID: bria-creative-upscale - Creator: Bria - Status: active - Base URL: https://api.lumenfall.ai/openai/v1 ## Specifications - Max Input Images: 1 - Input Modalities: image - Output Modalities: image - Supported Modes: Upscale ## Model Identifiers - Primary Slug: bria-creative-upscale ## Dates - Released: February 2025 ## Tags image-upscaling, image-enhancement, licensed-data ## Available Providers ### fal.ai - Config Key: fal/bria-creative-upscale - Provider Model ID: bria/upscale/creative - Pricing: $0.040/image - Source: https://fal.ai/models/bria/upscale/creative ## Code Examples ### Upscale (/v1/images/edits) #### cURL curl -X POST \ https://api.lumenfall.ai/openai/v1/images/edits \ -H "Authorization: Bearer $LUMENFALL_API_KEY" \ -F "model=bria-creative-upscale" \ -F "image=@source.png" \ -F "prompt=Add a starry night sky to this image" \ -F "size=1024x1024" # Response: # { "created": 1234567890, "data": [{ "url": "https://...", "revised_prompt": "..." }] } #### JavaScript 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: 'bria-creative-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); #### Python from openai import OpenAI client = OpenAI( api_key="YOUR_API_KEY", base_url="https://api.lumenfall.ai/openai/v1" ) response = client.images.edit( model="bria-creative-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) ## Frequently Asked Questions ### How much does Bria Creative Upscale cost? Bria Creative Upscale starts at $0.04 per image through Lumenfall. Pricing varies by provider. Lumenfall does not add any markup to provider pricing. ### How do I use Bria Creative Upscale via API? You can use Bria Creative Upscale through Lumenfall's OpenAI-compatible API. Send requests to the unified endpoint with model ID "bria-creative-upscale". Code examples are available in Python, JavaScript, and cURL. ### Which providers offer Bria Creative Upscale? Bria Creative Upscale is available through fal.ai on Lumenfall. Lumenfall automatically routes requests to the best available provider. ## Links - Model Page: https://lumenfall.ai/models/bria/bria-creative-upscale - About: https://lumenfall.ai/models/bria/bria-creative-upscale/about - Providers, Pricing & Performance: https://lumenfall.ai/models/bria/bria-creative-upscale/providers - API Reference: https://lumenfall.ai/models/bria/bria-creative-upscale/api - Benchmarks: https://lumenfall.ai/models/bria/bria-creative-upscale/benchmarks - Use Cases: https://lumenfall.ai/models/bria/bria-creative-upscale/use-cases - Playground: https://lumenfall.ai/playground?model=bria-creative-upscale - API Documentation: https://docs.lumenfall.ai