Stability Conservative Upscaler

Model Information

Display Name: Stability Conservative Upscaler

API Model ID: stability-ai/upscale-conservative

Category: Image To Image

Description: The Conservative Upscaler upscales images ~20-40x (from as small as 64x64) directly to a 4 megapixel output, with minimal alteration to the original. A guiding prompt is required. **Key Features:** - Upscales up to a 4 megapixel output - Minimal alteration — preserves all aspects of the image - Creativity control (0.2-0.5) **Best For:** - Producing a faithful 4 MP version of an image - Upscaling without reimagining content **Note:** Requires a descriptive prompt of the image content.

How to Use This Model

To use Stability Conservative Upscaler via the HInow.ai API, use the model ID: stability-ai/upscale-conservative

API Request Example (Image Generation)


POST https://api.hinow.ai/v1/images
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "stability-ai/upscale-conservative",
  "prompt": "Your image description here"
}
              

Pricing

  • total: $0.6

Available Parameters

  • creativity: Likelihood of creating additional details not heavily conditioned by the input image (0.2-0.5).
  • negative_prompt: Keywords describing what you do NOT wish to see in the output image. Advanced feature.
  • seed: Random seed for reproducibility. Use -1 (or omit) for a random seed.
  • output_format: Output image format. (Options: jpeg, png, webp)

Quick Reference

To use this model, set: "model": "stability-ai/upscale-conservative"

Featured: No

Documentation: https://hinow.ai/models/stability-ai/upscale-conservative

API Endpoint: https://api.hinow.ai/v1

Back to Models

Stability Conservative Upscaler

stability-ai/upscale-conservative

$0.600
per image

About

The Conservative Upscaler upscales images ~20-40x (from as small as 64x64) directly to a 4 megapixel output, with minimal alteration to the original. A guiding prompt is required.

Key Features:

  • Upscales up to a 4 megapixel output
  • Minimal alteration — preserves all aspects of the image
  • Creativity control (0.2-0.5)

Best For:

  • Producing a faithful 4 MP version of an image
  • Upscaling without reimagining content

Note: Requires a descriptive prompt of the image content.

Capabilities

Image To Image

Parameters

creativity

Likelihood of creating additional details not heavily conditioned by the input image (0.2-0.5).

negative_prompt

Keywords describing what you do NOT wish to see in the output image. Advanced feature.

seed

Random seed for reproducibility. Use -1 (or omit) for a random seed.

output_format

Output image format.

jpegpngwebp

Code Examples

curl -X POST https://api.hinow.ai/v1/images \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HINOW_API_KEY" \
  -d '{
    "model": "stability-ai/upscale-conservative",
    "prompt": "Transform this image into cyberpunk style",
    "images": [
      "https://example.com/image1.jpg",
      "data:image/png;base64,iVBORw0KGgo..."
    ],
    "parameters": {
      "creativity": "",
      "negative_prompt": "",
      "seed": "",
      "output_format": "jpeg"
    }
  }'