Keramo's picture
update README.MD
1584321 verified
|
Raw
History Blame Contribute Delete
596 Bytes
metadata
title: Background Remover API
emoji: 🖼️
colorFrom: blue
colorTo: purple
sdk: docker
app_port: 7860

Background Remover API

Remove image backgrounds using rembg with the Silueta model.

API Endpoints

  • GET /health - Health check
  • GET / - Service info
  • POST /api/v1/remove-background - Remove background from image

Quick Test

# Health check
curl https://keramo-background-remover-api.hf.space/health

# Remove background
curl -X POST \
  https://keramo-background-remover-api.hf.space/api/v1/remove-background \
  -F "file=@test.jpg" \
  --output result.png