Background Remover

Model Information

Display Name: Background Remover

API Model ID: 851-labs/background-remover

Category: Image tools

Description: Remove backgrounds from images using the transparent-background python package. Fast and efficient background removal.

How to Use This Model

To use Background Remover via the HInow.ai API, use the model ID: 851-labs/background-remover

API Request Example (Image Generation)


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

{
  "model": "851-labs/background-remover",
  "prompt": "Your image description here"
}
              

Pricing

  • total: $0.0024

Available Parameters

  • background_type: Background replacement type (rgba=transparent) (Options: rgba, map, green, white, blur)
  • format: Output image format (Options: png, webp)
  • threshold: Segmentation threshold (0.0=soft alpha gradient, 1.0=hard cutoff). Default: 0.0
  • reverse: If true, removes the foreground instead of background (Options: true, false)

Quick Reference

To use this model, set: "model": "851-labs/background-remover"

Featured: No

Documentation: https://hinow.ai/models/851-labs/background-remover

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

Back to Models

Background Remover

851-labs/background-remover

$0.0024
per image

About

Remove backgrounds from images using the transparent-background python package. Fast and efficient background removal.

Capabilities

Image tools

Parameters

background_type

Background replacement type (rgba=transparent)

rgbamapgreenwhiteblur
format

Output image format

pngwebp
threshold

Segmentation threshold (0.0=soft alpha gradient, 1.0=hard cutoff). Default: 0.0

reverse

If true, removes the foreground instead of background

truefalse

Code Examples

curl -X POST https://api.hinow.ai/v1/images \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HINOW_API_KEY" \
  -d '{
    "model": "851-labs/background-remover",
    "prompt": "Transform this image into cyberpunk style",
    "images": [
      "https://example.com/image1.jpg",
      "data:image/png;base64,iVBORw0KGgo..."
    ],
    "parameters": {
      "background_type": "rgba",
      "format": "png",
      "threshold": "",
      "reverse": "true"
    }
  }'