Bria Expand expands images beyond their borders in high quality. Resizing the image by generating new pixels to expand to the desired aspect ratio.
Run the model to see results
Run the model to see JSON response
Explore real outputs from this model. Click any example to instantly load its parameters and recreate the result.
Examples will appear here once users start using this model. Check back later!
POST https://lumozai.com/api/v4/run
Use this endpoint to run the model with your parameters. Authentication is required using your API key.
<?php
// API endpoint URL
$apiUrl = 'https://lumozai.com/api/v4/run';
// Your API key
$apiKey = 'YOUR_API_KEY';
// Model parameters
$params = [
'model_id' => image-expand,
'image' => '',
'aspect_ratio' => '16:9',
'canvas_size' => '',
'original_image_size' => '',
'original_image_location' => '',
'prompt' => '',
'negative_prompt' => '',
];
// Initialize cURL session
$curl = curl_init();
// Set cURL options
curl_setopt_array($curl, [
CURLOPT_URL => $apiUrl,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => $params,
CURLOPT_HTTPHEADER => [
'Accept: application/json',
'Authorization: Bearer ' . $apiKey
]
]);
// Execute the request
$response = curl_exec($curl);
$httpCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
// Check for errors
if (curl_errno($curl)) {
echo 'cURL Error: ' . curl_error($curl);
} else {
// Process the response
$result = json_decode($response, true);
if ($httpCode == 200 && isset($result['success']) && $result['success']) {
// Handle successful response
echo "Model output: ";
print_r($result['data']['output']);
} else {
// Handle error response
echo "Error: " . ($result['message'] ?? 'Unknown error');
}
}
// Close cURL session
curl_close($curl);
| Parameter | Type | Required | Description |
|---|---|---|---|
| model_id | string | Required | The ID of the model to run (image-expand) |
| api_key | string | Required | Your API key for authentication (sent via Bearer token in the Authorization header) |
| image | string | Required | |
| aspect_ratio | string | Required | Aspect ratio for expansion. Either aspect_ratio or canvas_size with original_image_size/location must be provided. Can be a predefined string like '1:1', '16:9' etc. or a custom float between 0.5 and 3.0 |
| canvas_size | array | Optional | Desired output canvas dimensions [width, height]. Default [1000, 1000]. Max 5000x5000 pixels. |
| original_image_size | array | Optional | Size of original image in canvas [width, height] |
| original_image_location | array | Optional | Position of original image in canvas [x, y] |
| prompt | string | Optional | |
| negative_prompt | string | Optional |
{
"success": true,
"data": {
"output": "https://lumozai.com/storage/outputs/image_12345.jpg"
}
}
Cost Per Generation is a pricing model where you’re charged based on each individual output the model generates. Instead of billing for compute time, you pay a fixed cost for every generation request, regardless of how long it takes. This makes costs predictable since each generated result incurs its own set rate.
Note: Pricing is subject to change. For bulk usage or custom packages, please contact us.