BGBuster

Introduction

BGBuster API - Remove image backgrounds with ease

Welcome to BGBuster

The BGBuster API allows you to easily remove backgrounds from images using a simple REST API.

Features

  • Fast - Remove backgrounds in seconds
  • Simple - Just one API call
  • Flexible - Support for various image formats

Quick Example

import { createClient } from "@bgbuster/sdk";

const client = createClient("your-api-key");

const result = await client.removeBackground({
  input: "https://example.com/photo.jpg",
  output: "url",
  format: "png"
});

console.log(result.url);

On this page