Live · Australian AI Infrastructure

Remove backgrounds
instantly.

Drop any image. Our AI removes the background in under 2 seconds. No signup. No watermarks. Just results. Your background? bgone.

Try it free → View pricing
bgone.ai — Live Demo
🖼️

Drop your image here

Drag & drop or click to browse · PNG, JPG, WebP up to 10MB

Removing background…

bgone.ai AI — Australian servers

Original
Original
Background Removed
Result
↓ Download PNG
1.5s
Avg processing
$0.002
Per image
99.2%
Accuracy
🇦🇺
Australian servers
How it works

Three steps. Zero effort.

From image to transparent PNG in seconds — no editing skills required.

1

Upload your image

Drop any PNG, JPG, or WebP up to 10MB via the web demo or REST API. No account needed to try.

2

AI processes it

BiRefNet — the world's best open-source segmentation model — runs on dedicated Australian servers.

3

Download your PNG

Get a crisp transparent PNG in under 2 seconds. Your data never leaves Australian soil. Ever.

Pricing

Simple. Transparent. Cheap.

15× cheaper than remove.bg. Pay once, use anytime. Credits never expire.

Starter
$5 AUD
500 images
$0.010 per image
  • 500 background removals
  • Transparent PNG output
  • Full API access
  • Australian data residency
  • Credits never expire
Pro
$19 AUD
2,500 images
$0.0076 per image
  • 2,500 background removals
  • Transparent PNG output
  • Full API access
  • Australian data residency
  • Credits never expire
Business
$59 AUD
10,000 images
$0.0059 per image
  • 10,000 background removals
  • Transparent PNG output
  • Priority API queue
  • Australian data residency
  • Credits never expire
Agency
$199 AUD
50,000 images
$0.0040 per image
  • 50,000 background removals
  • Transparent PNG output
  • Priority API queue
  • Australian data residency
  • Volume discount applied
For Developers

Integrate in minutes.

A single POST request. Returns JSON with a Base64 transparent PNG. That's it.

Sub-2-second response

Local AI processing. No cold starts. No queues.

🇦🇺

Australian data residency

Images never leave Australia. Built for compliance-conscious businesses.

📦

Clean JSON response

Base64-encoded transparent PNG. Drop it straight into your workflow.

🌎

Full CORS support

Call directly from the browser or backend. No proxy needed.

curl -X POST https://api.bgone.ai/remove \
  -F "[email protected]"

# Response JSON:
# {
#   "image_b64": "iVBORw0KGgo...",
#   "width": 800,
#   "height": 600
# }
import requests, base64

url = "https://api.bgone.ai/remove"

with open("product.jpg", "rb") as f:
    r = requests.post(url, files={"file": f})

data = r.json()
png = base64.b64decode(data["image_b64"])

with open("result.png", "wb") as f:
    f.write(png)

print(f"Saved {data['width']}x{data['height']} PNG")
const FormData = require("form-data");
const fs = require("fs");
const axios = require("axios");

const form = new FormData();
form.append("file", fs.createReadStream("product.jpg"));

const { data } = await axios.post(
  "https://api.bgone.ai/remove", form
);
const buf = Buffer.from(data.image_b64, "base64");
fs.writeFileSync("result.png", buf);
console.log(`Saved ${data.width}x${data.height} PNG`);
Early Access

Join the waitlist.

Be first to get API access, founding member pricing, and launch updates.

🎉 You're on the list! We'll be in touch soon.