Docs
video
Remove Background

Background Removal

The Background Remover API provides a simple yet powerful interface for removing background.

Endpoint

POST /video/v1/remove-background

Body

  • url (string, required): Image Url.

Example

Request

POST /video/v1/remove-background
Content-Type: application/json
x-access-key: YOUR_ACCESS_KEY
{
    "url": "<Input url>",
 
}

Response

Success
HTTP/1.1 200 OK
{
    "data": <string url>,
    "success": true,
    "message": "<process success message>"
}
Error
HTTP/1.1 400 Bad Request
Content-Type: application/json
{
    "success": false,
    "message": "<An error message containing the details>"
}