Your first background removal happens in Studio. Go to /studio , upload an image, and BackgroundErase will automatically remove the background. When you’re happy with the result, sign in and download the full-resolution PNG.
Note: Full-resolution downloads are capped each 24hr period on the free tier.
Studio step-by-step
- Open /studio .
- Click Upload and choose an image (or drag and drop it into Studio).
- Wait a moment while BackgroundErase removes the background automatically.
- Review the result, then click Download full resolution.
Screenshot reference
Optional: Make your first API call
If you’re integrating BackgroundErase into your own product, you can use the API to remove backgrounds programmatically. The API uses an x-api-key header for authentication, and returns a cutout image you can save directly (for example, as a PNG).
You’ll need API access first: create an account, select the Business tier on /pricing , and complete payment.
API step-by-step
- Create your account (or sign in).
- Go to /pricing and select Business.
- Complete payment to enable API access.
- Open https://backgrounderase.com/account#api-access .
- Press Generate key to create your API key.
- Use the key in your first request (example below). Replace YOUR_API_KEY and the image path.
Example cURL request
This command uploads an image and writes the result to output.png.
curl -H 'x-api-key: YOUR_API_KEY' \
-f https://api.backgrounderase.com/v2 \
-F 'image_file=@/absolute/path/to/image.jpg' \
-o output.png Tip: Make sure the file path after image_file=@ is an absolute path on your machine (or run the command from the folder where your image lives and use a relative path).
