প্রকাশিত হয়েছে

Removebg API ডকুমেন্টেশন

Cover

দ্রুত শুরু করুন

curl --location 'https://removebg.one/api/v1/predict' \
--header 'Authorization: Bearer $API_KEY' \
--form 'file=@"test.png"'

রিকোয়েস্ট ডোমেইন

https://removebg.one

রিকোয়েস্ট এন্ডপয়েন্ট

/api/v1/predict

API কী তৈরি করুন

API কী পৃষ্ঠা এ গিয়ে আপনার API কী তৈরি বা রিসেট করুন।

রিকোয়েস্ট প্যারামিটার

  1. বর্তমানে, শুধুমাত্র File অবজেক্টসমূহ ফর্মডেটার মাধ্যমে প্রেরণ করা যেতে পারে, সুতরাং সবসময় Content-Type হিসেবে multipart/form-data সেট করুন।

  2. API কী পৃষ্ঠা এ গিয়ে API কী তৈরি করার পরে, Authorization রিকোয়েস্ট হেডারে কী মান সেট করুন।

Content-Type: multipart/form-data
Authorization: Bearer $API_KEY

$API_KEY আপনার আসল API কী দিয়ে প্রতিস্থাপন করতে মনে রাখবেন।

রেসপন্স প্যারামিটার

0 রিটার্ন কোড সফল API কলকে নির্দেশ করে। অন্য কোন কোড মানে ব্যর্থতা, এবং বিশেষ ব্যর্থতার কারণ মেসেজ ফিল্ডে প্রদান করা হয়।

  1. সফল রেসপন্স
{
    "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=..."
    }
}
  1. ব্যর্থ রেসপন্স
{
    "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] এ ইমেইল করুন।

লেখকগণ
  • avatar
    নাম
    অফিসিয়াল
    ওয়েবসাইট
    Removebg