Remove Background API Documentation
This API endpoint allows users to remove the background from an image.
HTTP Method:
POST
Endpoint
https://agents.monkeyenglish.net/api/v1/images/remove_bg
Headers:
- accept: application/json
Specifies the expected response format (JSON). - APIKEY: a813ec766197294184a938c331b08e7g
A unique API key used for authentication. - Content-Type: multipart/form-data
Required when uploading files.
Parameters:
- image (required):
The image file to be processed. You need to specify the image file using @filename in curl. Make sure to set the correct MIME type for the image.
Example curl Request:
curl -X 'POST' \ 'https://agents.monkeyenglish.net/api/v1/images/remove_bg' \ -H 'accept: application/json' \ -H 'APIKEY: a813ec766197294184a938c331b08e7g' \ -H 'Content-Type: multipart/form-data' \ -F 'image=@images.jpeg;type=image/jpeg'