- ప్రచురించబడింది
Removebg API డాక్యుమెంటేషన్

త్వరగా ప్రారంభించండి
curl --location 'https://removebg.one/api/v1/predict' \
--header 'Authorization: Bearer $API_KEY' \
--form 'file=@"test.png"'అభ్యర్థన డొమైన్
https://removebg.oneఅభ్యర్థన ఎండ్పాయింట్
/api/v1/predictAPI కీ సృష్టించండి
API కీ పేజీ వద్ద మీ API కీని జనరేట్ లేదా రీసెట్ చేయండి.
అభ్యర్థన పారామీటర్లు
-
ప్రస్తుతం, ఫైల్ ఆబ్జెక్టులు మాత్రమే formData ద్వారా ప్రసారం చేయబడవచ్చు, కాబట్టి దయచేసి ఎప్పుడూ Content-Type ను multipart/form-data గా సెట్ చేయండి.
-
API కీ పేజీ వద్ద API కీని జనరేట్ చేసిన తర్వాత, Authorization అభ్యర్థన హెడ్డర్లో కీ విలువను సెట్ చేయండి.
Content-Type: multipart/form-data
Authorization: Bearer $API_KEYమీ వాస్తవ API కీతో $API_KEYను మార్చడం మర్చిపోవద్దు.
స్పందన పారామీటర్లు
0 అనే రిటర్న్ కోడ్ API కాల్ విజయవంతంగా ముగిసినట్లుగా సూచిస్తుంది. ఇతర ఏదైనా కోడ్ విఫలతను సూచిస్తుంది, నిర్దిష్ట విఫలత కారణం సందేశం ఫీల్డ్లో ఇవ్వబడుతుంది.
- విజయవంతమైన స్పందన
{
"code": 0,
"data": {
"cutoutUrl": "https://r.removebg.one/static/8d062cc4-7d1d-4390-b958-a88e3a714e68.png?signature=...",
"maskUrl": "https://r.removebg.one/static/acd1904f-e7b6-4e20-92cc-29f19659caf8.png?signature=..."
}
}- విఫలమైన స్పందన
{
"code": 400,
"message": "Invalid request parameters."
}గమనిక: విజయవంతమైన తర్వాత తిరిగి వచ్చిన చిత్రం URL కేవలం 1 గంటలపాటు మాత్రమే చెల్లుబాటు అవుతుంది. దయచేసి మీ వినియోగ సందర్భాన్ని అనుసరించి దానిని సేకరించండి లేదా వినియోగదారుడిని సమయానికి సమాచారం ఇవ్వండి.
కోడ్ ఉదాహరణలు
Fetch
const formData = new FormData()
formData.append('file', File)
fetch('https://removebg.one/api/v1/predict', {
method: 'POST',
body: formData,
headers: {
Authorization: 'Bearer $API_KEY',
},
})Java
import org.apache.http.HttpEntity;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.entity.mime.MultipartEntityBuilder;
import org.apache.http.entity.mime.content.FileBody;
import org.apache.http.util.EntityUtils;
import com.google.gson.JsonObject;
import com.google.gson.JsonParser;
import java.io.File;
public class RemoveBgApiRequest {
public static void main(String[] args) throws Exception {
String apiKey = "YOUR_API_KEY"; // Replace with your API key
String filePath = "test.png"; // Replace with your file path
String url = "https://removebg.one/api/v1/predict";
File file = new File(filePath);
// Create HTTP client
try (CloseableHttpClient client = HttpClients.createDefault()) {
HttpPost post = new HttpPost(url);
post.setHeader("Authorization", "Bearer " + apiKey);
// Build multipart form data
FileBody fileBody = new FileBody(file);
HttpEntity entity = MultipartEntityBuilder.create()
.addPart("file", fileBody)
.build();
post.setEntity(entity);
// Execute request
String response = EntityUtils.toString(client.execute(post).getEntity());
// Parse the JSON response
JsonObject jsonResponse = JsonParser.parseString(response).getAsJsonObject();
int code = jsonResponse.get("code").getAsInt();
if (code == 0) {
// Success
System.out.println("Success: Response data = " + jsonResponse.getAsJsonObject("data"));
} else {
// Failure
String message = jsonResponse.has("message") ? jsonResponse.get("message").getAsString() : "Unknown error";
System.out.println("Failure: " + message);
}
}
}
}Python
import requests
# Replace with your actual API key
api_key = 'your_api_key_here'
url = 'https://removebg.one/api/v1/predict'
# Path to the image file
file_path = 'test.png'
# Set up the headers with Authorization
headers = {
'Authorization': f'Bearer {api_key}'
}
# Open the image file in binary mode
with open(file_path, 'rb') as image_file:
# Send the POST request with the file
response = requests.post(url, headers=headers, files={'file': image_file})
# Check the response status
if response.code == 0:
print('Request successful')
# You can save or process the response content as needed
with open('output.png', 'wb') as output_file:
output_file.write(response.content)
else:
print(f'Error: {response.code}')
తుది సూచనలు
మీకు ఏవైనా ప్రశ్నలు ఉంటే, దయచేసి [email protected] కు ఇమెయిల్ పంపండి.
- రచయితలు

- పేరు
- అధికారిక
- వెబ్సైట్
- రిమూవ్బిజి