Remove background
💡
Before using the API, make sure you have read our Authorization documentation to get set up with Vmake's API authentication.
Remove background API allows you to remove the background from an image. The API accepts an base64 encoded image format and returns the base64 encoded image with the background removed.
Make a request
🌐
POST https://open.vmake.ai/api/v1/image/remove-background
Send a request for removing the background from an image.
Request body
image string Required
💡
The supported image formats are JPEG and PNG.
Input an
image
URL or Base64 encoded image data.Response body
The standard response body will be returned.
image string Required
The result image with the background removed.
Examples
curl -X POST \
-H "Content-Type: application/json" \
-d '{ "image": "BASE64_ENCODED_IMAGE" }' \
https://open.vmake.ai/api/v1/image/remove-background