> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gmicloud.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# bria-image-increase-resolution

> API usage guide for bria-image-increase-resolution.

{/* source_model_id: bria-image-increase-resolution */}

{/* source_updated_at: 1782846532 */}

**Model ID**

```bash theme={null}
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](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

| Parameter         | Type  | Required | Description                                      |
| :---------------- | :---- | :------- | :----------------------------------------------- |
| image             | image | Yes      | Input image (Base64 string or URL; JPEG or PNG). |
| desired\_increase | enum  | No       | Upscaling multiplier: 2 or 4. Default: 2.        |

## 5. Example CURL Request

```bash theme={null}
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

```bash theme={null}
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.
