Nudify.me API
  • Welcome
  • API
    • Account
    • Pro Nudification
Powered by GitBook
On this page
  1. API

Pro Nudification

Pro mode outputs the most realistic nudified images on the market, perfect for users seeking detailed and lifelike transformations.

PreviousAccount

Last updated 2 months ago

The 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.

Pro Nudification
Cover

Sample Image

Cover

Sample Mask

  • POSTCreate Pro Nudification Job
  • POSTGet Job Result

Create Pro Nudification Job

post

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

Authorizations
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
200
Job created successfully
application/json
400
Bad request, validation failed
application/json
500
Internal server error.
application/json
post
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
Body
jobIDstringRequired

The job ID returned when job was created.

Responses
200
Job status and result
application/json
400
Invalid jobID or unauthorized access
application/json
500
Internal server error.
application/json
post
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": {}
}