Remove Watermark
Remove Watermark
POST https://api.novita.ai/v3/remove-watermark
Automatically remove watermarks from images.
Example
This API automatically removes watermarks from images.
Try it in playground.
Request:
curl --location --request POST 'https://api.novita.ai/v3/remove-watermark' \
--header 'Authorization: Bearer {{API Key}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"image_file": "{{Base64 encoded image}}"
}'
HTTP status codes in the 2xx range indicate that the request has been successfully accepted. Code 400 indicates a request parameter error, while status codes in the 5xx range indicate internal server errors.
You can obtain the image URL in the image_file
of the response in base64 format.
Response:
{
"image_file": "{{Base64 encoded image}}",
"image_type": "png"
}