Integrate background removal into your applications with our API.
Use our powerful API to add background removal capabilities to your applications.
View Documentation// Example API call
const response = await fetch('/api/remove-bg', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
image_url: 'https://example.com/image.jpg'
})
});
const result = await response.json();