Stability Creative Upscale
stability-upscale-creativePrompt-guided Stability AI upscaling for highly degraded or low-resolution images.
Prompt-guided Stability AI upscaling for highly degraded or low-resolution images.
Prompt-to-image, image editing, image merging, upscaling, and background removal. Endpoint: http://omixa.cloud/api/v1/images/generations
Prompt-guided Stability AI upscaling for highly degraded or low-resolution images.
Use Omixa's unified endpoint and your workspace API key. Provider routing, billing, failover, and usage records are handled by Omixa.
http://omixa.cloud/api/v1/images/generations
Only send options supported by this model. Required fields and accepted values are listed below.
| Field | Type | Required | Accepted values | Description |
|---|---|---|---|---|
model |
string | Yes | stability-upscale-creative | Use `stability-upscale-creative`. Omixa resolves the active provider route and failover key automatically. |
model |
string | Yes | Any valid value | The Omixa Stability tool slug. |
input_images |
array | Yes | Any valid value | Exactly one inline PNG, JPG, or WebP source image. Use `{type:"image_url", image_url:{url:"data:image/png;base64,..."}}`. |
output_format |
string | No | png, jpeg, webp | Preferred output file format. |
prompt |
string | Yes | 1-10000 characters | A descriptive English prompt for the upscaled result. |
negative_prompt |
string | No | up to 10000 characters | Details to avoid in the upscaled result. |
seed |
integer | No | 0-4294967294 | Deterministic seed. Omit or use 0 for a random seed. |
creativity |
number | No | 0.1-0.5 (default 0.3) | Controls how much additional detail the upscaler may create. |
style_preset |
string | No | enhance, photographic, cinematic, anime, digital-art, and other documented presets | Optional Stability style guidance. |
Start with this model-safe payload and expect the normalized Omixa response shape shown beside it.
{
"model": "stability-upscale-creative",
"output_format": "png",
"input_images": [
{
"type": "image_url",
"image_url": {
"url": "data:image/png;base64,<base64-image>"
}
}
],
"prompt": "Preserve the subject while restoring crisp, realistic detail.",
"creativity": 0.3,
"style_preset": "photographic"
}
{
"created": 1780660800,
"data": [
{
"b64_json": "<base64-image>",
"url": null
}
],
"usage": {
"billed_amount": "0.039000"
}
}
Replace the example API key with a workspace key and keep model-specific fields unchanged unless the table above marks them optional.
curl -X POST http://omixa.cloud/api/v1/images/generations \
-H "Authorization: Bearer omx_live_xxx" \
-H "Content-Type: application/json" \
-d '{
"model": "stability-upscale-creative",
"output_format": "png",
"input_images": [
{
"type": "image_url",
"image_url": {
"url": "data:image/png;base64,<base64-image>"
}
}
],
"prompt": "Preserve the subject while restoring crisp, realistic detail.",
"creativity": 0.3,
"style_preset": "photographic"
}'
const response = await fetch('http://omixa.cloud/api/v1/images/generations', {
method: 'POST',
headers: {
'Authorization': 'Bearer omx_live_xxx',
'Content-Type': 'application/json'
},
body: "{\n \"model\": \"stability-upscale-creative\",\n \"output_format\": \"png\",\n \"input_images\": [\n {\n \"type\": \"image_url\",\n \"image_url\": {\n \"url\": \"data:image/png;base64,<base64-image>\"\n }\n }\n ],\n \"prompt\": \"Preserve the subject while restoring crisp, realistic detail.\",\n \"creativity\": 0.3,\n \"style_preset\": \"photographic\"\n}"
});
const data = await response.json();
import requests
response = requests.post(
'http://omixa.cloud/api/v1/images/generations',
headers={'Authorization': 'Bearer omx_live_xxx', 'Content-Type': 'application/json'},
json={
"model": "stability-upscale-creative",
"output_format": "png",
"input_images": [
{
"type": "image_url",
"image_url": {
"url": "data:image/png;base64,<base64-image>"
}
}
],
"prompt": "Preserve the subject while restoring crisp, realistic detail.",
"creativity": 0.3,
"style_preset": "photographic"
}
)
print(response.json())
$ch = curl_init('http://omixa.cloud/api/v1/images/generations');
curl_setopt_array($ch, [
CURLOPT_POST => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer omx_live_xxx', 'Content-Type: application/json'],
CURLOPT_POSTFIELDS => '{
"model": "stability-upscale-creative",
"output_format": "png",
"input_images": [
{
"type": "image_url",
"image_url": {
"url": "data:image/png;base64,<base64-image>"
}
}
],
"prompt": "Preserve the subject while restoring crisp, realistic detail.",
"creativity": 0.3,
"style_preset": "photographic"
}',
CURLOPT_RETURNTRANSFER => true,
]);
$response = curl_exec($ch);
using var client = new HttpClient();
client.DefaultRequestHeaders.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("Bearer", "omx_live_xxx");
var json = @"{
""model"": ""stability-upscale-creative"",
""output_format"": ""png"",
""input_images"": [
{
""type"": ""image_url"",
""image_url"": {
""url"": ""data:image/png;base64,<base64-image>""
}
}
],
""prompt"": ""Preserve the subject while restoring crisp, realistic detail."",
""creativity"": 0.3,
""style_preset"": ""photographic""
}";
var response = await client.PostAsync("http://omixa.cloud/api/v1/images/generations", new StringContent(json, System.Text.Encoding.UTF8, "application/json"));
var body = await response.Content.ReadAsStringAsync();
payload := []byte(`{
"model": "stability-upscale-creative",
"output_format": "png",
"input_images": [
{
"type": "image_url",
"image_url": {
"url": "data:image/png;base64,<base64-image>"
}
}
],
"prompt": "Preserve the subject while restoring crisp, realistic detail.",
"creativity": 0.3,
"style_preset": "photographic"
}`)
req, _ := http.NewRequest("POST", "http://omixa.cloud/api/v1/images/generations", bytes.NewReader(payload))
req.Header.Set("Authorization", "Bearer omx_live_xxx")
req.Header.Set("Content-Type", "application/json")
resp, err := http.DefaultClient.Do(req)