Skip to main content
Core.Today
|
BriaFastHigh

Bria Increase Resolution

Bria's commercially-safe image upscaler (130K+ runs). Increase resolution 2x or 4x with a model trained exclusively on licensed data, preserving alpha transparency โ€” built for enterprise pipelines that require full legal liability coverage.

93 credits
per image (x2 and x4 same price)
Trained exclusively on licensed data โ€” commercially safe
2x or 4x resolution increase (desired_increase)
Preserves alpha channel โ€” ideal after background removal
Optional content moderation pass
Enterprise-grade consistency from Bria

Run it right now

Test this model instantly in the Console Playground โ€” no code required

Sign in to try

Use with AI Assistant

Copy usage instructions for Claude, ChatGPT, or other AI

Quick Start

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "bria/increase-resolution",
  "input": {
    "image": "https://example.com/logo.png",
    "desired_increase": 4,
    "preserve_alpha": true
  }
}'

Parameters

ParameterTypeRequiredDefaultDescription
imagestringNo-Input image file to upscale (use this or image_url)
image_urlstringNo-URL of the input image (alternative to image)
desired_increaseintegerNo2Resolution multiplier: 2 or 4
24
preserve_alphabooleanNotruePreserve the alpha (transparency) channel of the input
syncbooleanNotrueSynchronous response mode
content_moderationbooleanNofalseRun content moderation on the input

How to Provide File Input

There are 3 ways to provide files for the image parameter:

Recommended

Direct Upload (Multipart)

Attach files directly to POST /v1/predictions/upload. No separate upload step needed.

curl -X POST "https://api.core.today/v1/predictions/upload" \
  -H "X-API-Key: cdt_your_api_key" \
  -F "model=bria/increase-resolution" \
  -F 'input={"prompt":"your prompt here"}' \
  -F "file:image=@your_file.png"

Image URL

Pass a publicly accessible URL directly. You can also use file_url from the Storage API.

{
  "model": "bria/increase-resolution",
  "input": {
    "prompt": "your prompt here",
    "image": "https://example.com/image.jpg"
  }
}
See the File Upload docs for more upload methods including Presigned URLs.

Common Parameters

Common parameters used when calling POST /v1/predictions.

ParameterTypeRequiredDefaultDescription
modelstringYes-Model identifier
inputobjectYes-Object containing the model-specific parameters from the table above
output_folderstringNo-Folder path for output files (max 256 chars, '..' not allowed)
webhook_urlstringNo-Webhook URL to call on completion
is_publicbooleanNofalseIf true, output files are also available via permanent public URLs

Examples

Upscale a Transparent Logo

4x enlargement with the alpha channel intact

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "bria/increase-resolution",
  "input": {
    "image": "https://example.com/logo.png",
    "desired_increase": 4,
    "preserve_alpha": true
  }
}'

Catalog Photo 2x

Standard 2x enhancement for product imagery

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "bria/increase-resolution",
  "input": {
    "image_url": "https://example.com/product.jpg",
    "desired_increase": 2
  }
}'

Tips & Best Practices

1This is the upscaler to choose when licensing provenance matters โ€” Bria models are trained only on licensed data
2preserve_alpha (on by default) makes it the natural companion to Bria Remove Background in cutout pipelines
3x2 and x4 cost the same 120 credits โ€” use 4 when in doubt
4For budget bulk work without the licensing requirement, Google Upscaler (60cr) or P-Image Upscale (from 15cr) are cheaper

Use Cases

Enterprise content pipelines requiring legal indemnity
Upscaling transparent PNGs (logos, cutouts) without losing alpha
E-commerce catalog standardization
Marketing asset preparation at agency scale
Post-processing after background removal