Skip to main content
Model ID
bria-image-increase-resolution
Calling method: sync

Bria Increase Resolution API Documentation

The Increase Resolution route upscales an input image, increasing its resolution by either 2x or 4x while preserving detail. It is powered by Bria’s image enhancement model.

1. API Endpoint & Authentication

Base URL: https://console.gmicloud.ai Endpoint: POST /api/v1/ie/requestqueue/apikey/requests Header: Authorization: Bearer YOUR_API_KEY Content-Type: application/json

2. Model Specifications

  • Pricing: $0.020 per image
  • Input Formats: JPEG, PNG (Base64 string or URL)
  • Upscaling Factors: 2x (default) or 4x
  • Output: Upscaled image at the selected multiplier

3. How It Works

Resolution Upscaling

Provide a single source image and select a multiplier. The model upscales the image by the chosen factor (2x or 4x), reconstructing detail to keep the enlarged result sharp rather than simply stretching the pixels.

4. Parameter Reference

ParameterTypeRequiredDescription
imageimageYesInput image (Base64 string or URL; JPEG or PNG).
desired_increaseenumNoUpscaling multiplier: 2 or 4. Default: 2.

5. Example CURL Request

curl -X POST "https://console.gmicloud.ai/api/v1/ie/requestqueue/apikey/requests" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "bria-image-increase-resolution",
    "payload": {
      "image": "https://example.com/source_image.jpg",
      "desired_increase": 2
    }
  }'

6. Checking Request Status

Endpoint: GET /api/v1/ie/requestqueue/apikey/requests/{request_id}
  • queued: Request is waiting to be processed by GPU resources.
  • processing: Image processing is currently in progress.
  • success: Processing completed. URLs available in outcome.media_urls.
  • failed: Processing failed. Check logs for details.