Skip to main content

Restore face


Restore face

Base URLs:

  • https://api.novita.ai

POST Restore face

POST /v3/restore-face

This feature allows you to restore face in just seconds.

Request header parameters

  • AuthorizationstringRequired

    In Bearer {{Key}} format.

  • Content-TypestringRequired

    Only application/json supported

    Enum: application/json

Request Body parameters

  • image_filestringRequired

    The base64 of original image, with a maximum resolution of 1024 * 1024 and a max file size of 30 Mb.

  • fidelityintegerRequired

    The fidelity of the original portrait, on a scale from 0 to 1.0, with higher scores indicating better fidelity, Range [0, 1]

  • extraobject

    Extra info.

    Show properties

Responses

  • image_filestring

  • image_typestring

Example

This feature allows you to restore face in just seconds.

Please set the Content-Type header to application/json in your HTTP request to indicate that you are sending JSON data. Currently, only JSON format is supported.

Try it in playgroundopen in new window.

Request:

curl --location --request POST 'https://api.novita.ai/v3/restore-face' \
--header 'Authorization: Bearer {{key}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "fidelity": 0.7,
    "image_file": "{{Base64 encoded image}}"
}'

HTTP status codes in the 2xx range indicate that the request has been successfully accepted, code 400 means requst params error, while status codes in the 5xx range indicate internal server errors.

You can get images url in image_file of response in base64 format.

Response:

{
    "image_file": "{{Base64 encoded image}}"
    "image_type": "jpeg"
}
novita.ai API
novita.ai API