freeremovebackground Logo

v 1.4.3

Background Removal API

Remove backgrounds from images with our simple and powerful API. Free tier available with no credit card required.

API Endpoint
Make a POST request to our endpoint with your image URL and desired output format
POST https://api.freeremovebackground.com/api/v1/mutate/remove-background

Request Headers

Authorization

Bearer YOUR_API_KEY

Content-Type

application/json

Code Examples

const response = await fetch('https://api.freeremovebackground.com/api/v1/mutate/remove-background', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'Authorization': 'Bearer YOUR_API_KEY'
  },
  body: JSON.stringify({
    image_url: 'https://example.com/image.jpg',
    output_format: 'png'
  })
});

const result = await response.json();

Response Format

{
  "success": true,
  "url": "https://storage.freeremovebackground.com/processed/result.png",
  "processing_time": "0.89s"
}

API Token Request

To get your free API token, enter your email address below.