Stability Remove Background

Model Information

Display Name: Stability Remove Background

API Model ID: stability-ai/remove-background

Category: Image To Image

Description: The Remove Background service accurately segments the foreground from an image and removes the background, returning a transparent (PNG/WebP) result. **Key Features:** - Accurate foreground/background segmentation - Transparent PNG or WebP output - Single-parameter, no prompt needed **Best For:** - E-commerce product cut-outs - Compositing and design assets

How to Use This Model

To use Stability Remove Background via the HInow.ai API, use the model ID: stability-ai/remove-background

API Request Example (Image Generation)


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

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

Pricing

  • total: $0.075

Available Parameters

  • output_format: Output image format. (Options: png, webp)

Quick Reference

To use this model, set: "model": "stability-ai/remove-background"

Featured: Yes

Documentation: https://hinow.ai/models/stability-ai/remove-background

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

Back to Models

Stability Remove Background

Featured

stability-ai/remove-background

$0.075
per image

About

The Remove Background service accurately segments the foreground from an image and removes the background, returning a transparent (PNG/WebP) result.

Key Features:

  • Accurate foreground/background segmentation
  • Transparent PNG or WebP output
  • Single-parameter, no prompt needed

Best For:

  • E-commerce product cut-outs
  • Compositing and design assets

Capabilities

Image To Image

Parameters

output_format

Output image format.

pngwebp

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/remove-background",
    "prompt": "Transform this image into cyberpunk style",
    "images": [
      "https://example.com/image1.jpg",
      "data:image/png;base64,iVBORw0KGgo..."
    ],
    "parameters": {
      "output_format": "png"
    }
  }'