Clipdrop - Background Remover
Remove backgrounds from images using Clipdrop's powerful AI technology. This model is optimized for high accuracy, accurately handling complex edges like hair and transparent objects.
Endpoint
Request Headers
| Field | Value |
|---|---|
| API-KEY | <api-key> |
| Content-Type | application/json |
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
type | string | Yes | Feature type identifier. Must be BACKGROUND_REMOVER |
model | string | Yes | AI model identifier. Must be clipdrop |
promptObject | object | Yes | Configuration object containing parameters |
Prompt Object Parameters
| Parameter | Type | Required | Description | Default |
|---|---|---|---|---|
imageUrl | string | Yes | Path to the image for background removal | - |
Code Examples
- cURL
- JavaScript
- Python
curl --location 'https://api.1min.ai/api/features' \
--header 'API-KEY: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"type": "BACKGROUND_REMOVER",
"model": "clipdrop",
"promptObject": {
"imageUrl": "development/images/2025_02_16_14_21_09_329_images.jpeg"
}
}'
fetch('https://api.1min.ai/api/features', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'API-KEY': 'YOUR_API_KEY'
},
body: JSON.stringify({
type: 'BACKGROUND_REMOVER',
model: 'clipdrop',
promptObject: {
imageUrl: 'development/images/2025_02_16_14_21_09_329_images.jpeg'
}
})
})
import requests
url = "https://api.1min.ai/api/features"
headers = {
"Content-Type": "application/json",
"API-KEY": "YOUR_API_KEY"
}
data = {
"type": "BACKGROUND_REMOVER",
"model": "clipdrop",
"promptObject": {
"imageUrl": "development/images/2025_02_16_14_21_09_329_images.jpeg"
}
}
response = requests.post(url, headers=headers, json=data)
Interactive Playground
API Playground
https://api.1min.ai/api/featuresPath to the image file for background removal
Generated cURL Command:
curl -X POST "https://api.1min.ai/api/features" \
-H "API-KEY: <your-api-key>" \
-H "Content-Type: application/json" \
-d '{
"type": "BACKGROUND_REMOVER",
"model": "clipdrop",
"promptObject": {
"imageUrl": "development/images/2025_02_16_14_21_09_329_images.jpeg"
}
}'
Use Cases
E-commerce
- Product Photos: Instantly create white-background product shots for listings.
- Marketing Materials: Isolate products for banners and ads.
Content Creation
- Thumbnails: Create engaging YouTube thumbnails by isolating subjects.
- Social Media: Create stickers and memes by removing backgrounds.
Professional Design
- Composites: Extract elements for complex photo manipulations.