Cleanup
Cleanup
POST https://api.novita.ai/v3/cleanup
Easily remove unwanted objects, defects, people, or text from your pictures in just seconds.
Example
Cleanup allows you to easily remove unwanted objects, defects, people, or text from your pictures in just seconds.
Try it in the playground.
Request:
curl --location --request POST 'https://api.novita.ai/v3/cleanup' \
--header 'Authorization: Bearer {{API Key}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"image_file":"{{Base64 encoded image}}",
"mask_file":"{{Base64 encoded image}}"
}'
Response:
{
"image_file": "{{Base64 encoded image}}",
"image_type": "png"
}
HTTP status codes in the 2xx range indicate that the request has been successfully accepted. A code of 400 means there is an error with the request parameters, while status codes in the 5xx range indicate internal server errors.
You can retrieve the image URL in the image_file
field of the response in base64 format.
Response:
{
"image_file": "{{Base64 encoded image}}",
"image_type": "png"
}