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:

  1. Submit a Job: Use the /pro/create endpoint to create a new job. The process typically takes between 15 to 40 seconds.

  2. Check Job Status: After submitting, use the returned jobID with the /pro/get endpoint to periodically check the task status and track its progress.

Cover

Sample Image

Cover

Sample Mask

Create Pro Nudification Job

post

Submit an image, mask, and body attributes to undress or change outfits using AI.

Authorizations
x-api-keystringRequired
Body
imagestring · uriRequired

A direct URL to the input image (JPG or PNG).

Example: https://www.nudify.me/enterprise/pro/image.png
maskstring · uriRequired

A direct URL to the mask image (JPG or PNG).

Example: https://www.nudify.me/enterprise/pro/mask.png
modestring · enumOptional

Transformation mode.

Default: undressExample: undressPossible values:
boobSizestring · enumOptional

Optional body attribute for the model.

Default: autoExample: autoPossible values:
bodyShapestring · enumOptional

Optional body attribute for the model.

Default: autoExample: autoPossible values:
Responses
post
/pro/create
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": {}
}

Get Job Result

post

Retrieve the result of a previously created job using jobID.

Authorizations
x-api-keystringRequired
Body
jobIDstringRequired

The job ID returned when job was created.

Responses
post
/pro/get
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