Skip to main content

Mix pose


Mix pose

POST https://api.novita.ai/v3/mix-pose

Enhance your photos by adding any dynamic poses, making them more captivating and lifelike.

Request header parameters

  • AuthorizationstringRequired

    In Bearer {{Key}} format.

  • Content-Typestring

    Only application/json supported

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.

  • pose_image_filestringRequired

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

  • extraobject

    Extra info.

    Show properties

Responses

  • image_filestring

  • image_typestring

Example

This API helps to add any of the poses to your photos, and make your photos more interesting and vivid.

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/mix-pose' \
--header 'Authorization: Bearer {{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 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": "png"
}
novita.ai API
novita.ai API
novita.ai API