Remove Text
Remove Text
POST https://api.novita.ai/v3/remove-text
Automatically remove text from images.
Example
This API automatically removes text from images.
Try it in playground.
Request:
curl --location --request POST 'https://api.novita.ai/v3/remove-text' \
--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. 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 obtain the image URL in the image_file
field of the response in base64 format.
Response:
{
"image_file": "{{Base64 encoded image}}",
"image_type": "jpeg"
}