Pro Nudification
Pro mode outputs the most realistic nudified images on the market, perfect for users seeking detailed and lifelike transformations.
The Pro Nudification API allows for the creation of AI-based jobs focused on undressing and nudification. To start a job, please follow the steps outlined below:
Submit a Job: Use the
/pro/createendpoint to create a new job. The process typically takes between 15 to 40 seconds.Check Job Status: After submitting, use the returned
jobIDwith the/pro/getendpoint to periodically check the task status and track its progress.

Sample Image

Sample Mask
Submit an image, mask, and body attributes to undress or change outfits using AI.
A direct URL to the input image (JPG or PNG).
https://www.nudify.me/enterprise/pro/image.pngA direct URL to the mask image (JPG or PNG).
https://www.nudify.me/enterprise/pro/mask.pngTransformation mode.
undressExample: undressPossible values: Optional body attribute for the model.
autoExample: autoPossible values: Optional body attribute for the model.
autoExample: autoPossible values: Job created successfully
Bad request, validation failed
Internal server error.
POST /pro/create HTTP/1.1
Host: enterprise.nudify.me
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 167
{
"image": "https://www.nudify.me/enterprise/pro/image.png",
"mask": "https://www.nudify.me/enterprise/pro/mask.png",
"mode": "undress",
"boobSize": "auto",
"bodyShape": "auto"
}{
"jobID": "text",
"status": "processing",
"input": {}
}Retrieve the result of a previously created job using jobID.
The job ID returned when job was created.
Job status and result
Invalid jobID or unauthorized access
Internal server error.
POST /pro/get HTTP/1.1
Host: enterprise.nudify.me
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 16
{
"jobID": "text"
}{
"jobID": "text",
"status": "completed",
"result": [
"https://xxx.nudify.me/files/image.jpg"
],
"input": {}
}Last updated