Stability Creative Upscaler

Model Information

Display Name: Stability Creative Upscaler

API Model ID: stability-ai/upscale-creative

Category: Image To Image

Description: The Creative Upscaler upscales highly degraded images (under 1 megapixel) all the way to 4K with a creative reimagining, often enhancing quality. This is an ASYNC service: it returns a generation id to be polled at results/{id}. **Key Features:** - Upscales ~20-40x to 4K with heavy reimagining - Creativity (0.1-0.5) and style presets - Best on highly degraded, low-res inputs **Best For:** - Restoring and enhancing very low-res images - Creative high-resolution renders **Note:** Asynchronous — poll results/{id}. Not for images already 1 MP or above.

How to Use This Model

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

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-creative",
  "prompt": "Your image description here"
}
              

Pricing

  • total: $0.9

Available Parameters

  • creativity: How creative the model is when upscaling (0.1-0.5). Higher adds more detail.
  • negative_prompt: Keywords describing what you do NOT wish to see in the output image. Advanced feature.
  • style_preset: Guides the image model towards a particular visual style. (Options: 3d-model, analog-film, anime, cinematic, comic-book, digital-art, enhance, fantasy-art, isometric, line-art, low-poly, modeling-compound, neon-punk, origami, photographic, pixel-art, tile-texture)
  • 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-creative"

Featured: No

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

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

Back to Models

Stability Creative Upscaler

stability-ai/upscale-creative

$0.900
per image

About

The Creative Upscaler upscales highly degraded images (under 1 megapixel) all the way to 4K with a creative reimagining, often enhancing quality. This is an ASYNC service: it returns a generation id to be polled at results/{id}.

Key Features:

  • Upscales ~20-40x to 4K with heavy reimagining
  • Creativity (0.1-0.5) and style presets
  • Best on highly degraded, low-res inputs

Best For:

  • Restoring and enhancing very low-res images
  • Creative high-resolution renders

Note: Asynchronous — poll results/{id}. Not for images already 1 MP or above.

Capabilities

Image To Image

Parameters

creativity

How creative the model is when upscaling (0.1-0.5). Higher adds more detail.

negative_prompt

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

style_preset

Guides the image model towards a particular visual style.

3d-modelanalog-filmanimecinematiccomic-bookdigital-artenhancefantasy-artisometricline-artlow-polymodeling-compoundneon-punkorigamiphotographicpixel-arttile-texture
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-creative",
    "prompt": "Transform this image into cyberpunk style",
    "images": [
      "https://example.com/image1.jpg",
      "data:image/png;base64,iVBORw0KGgo..."
    ],
    "parameters": {
      "creativity": "",
      "negative_prompt": "",
      "style_preset": "3d-model",
      "seed": "",
      "output_format": "jpeg"
    }
  }'