Stability Outpaint

Model Information

Display Name: Stability Outpaint

API Model ID: stability-ai/outpaint

Category: Image To Image

Description: The Outpaint service inserts additional content to expand an image in any direction, letting you 'zoom out'. It minimizes artifacts and signs that the original image was edited. An optional prompt guides the new content. **Key Features:** - Expand left/right/up/down by 0-2000 px each - Optional guiding prompt and creativity control - Seamless, artifact-minimized expansion **Best For:** - Changing aspect ratio without cropping - Extending backgrounds and scenes

How to Use This Model

To use Stability Outpaint via the HInow.ai API, use the model ID: stability-ai/outpaint

API Request Example (Image Generation)


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

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

Pricing

  • total: $0.06

Available Parameters

  • left: Pixels to outpaint on the left (0-2000). At least one direction must be non-zero.
  • right: Pixels to outpaint on the right (0-2000).
  • up: Pixels to outpaint on the top (0-2000).
  • down: Pixels to outpaint on the bottom (0-2000).
  • creativity: Likelihood of creating additional details not heavily conditioned by the input image (0-1).
  • 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/outpaint"

Featured: No

Documentation: https://hinow.ai/models/stability-ai/outpaint

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

Back to Models

Stability Outpaint

stability-ai/outpaint

$0.060
per image

About

The Outpaint service inserts additional content to expand an image in any direction, letting you 'zoom out'. It minimizes artifacts and signs that the original image was edited. An optional prompt guides the new content.

Key Features:

  • Expand left/right/up/down by 0-2000 px each
  • Optional guiding prompt and creativity control
  • Seamless, artifact-minimized expansion

Best For:

  • Changing aspect ratio without cropping
  • Extending backgrounds and scenes

Capabilities

Image To Image

Parameters

left

Pixels to outpaint on the left (0-2000). At least one direction must be non-zero.

right

Pixels to outpaint on the right (0-2000).

up

Pixels to outpaint on the top (0-2000).

down

Pixels to outpaint on the bottom (0-2000).

creativity

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

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/outpaint",
    "prompt": "Transform this image into cyberpunk style",
    "images": [
      "https://example.com/image1.jpg",
      "data:image/png;base64,iVBORw0KGgo..."
    ],
    "parameters": {
      "left": "",
      "right": "",
      "up": "",
      "down": "",
      "creativity": "",
      "style_preset": "3d-model",
      "seed": "",
      "output_format": "jpeg"
    }
  }'