Instant Nudification

Instant nudification automatically detecting clothing and body parts for accuracy while maintaining simplicity

Nudify transforms an input image by detecting a female subject and generating a realistic nude version of that person. The system keeps the original pose, lighting, and proportions so the result looks natural and consistent with the source photo.

The process is asynchronous. The client sends a POST request with the imageUrl of the person. The API accepts the request and returns a jobId instead of the final output.

You can retrieve the completed result either through a webhook callback or by checking the job status endpoint. When the job finishes, the response includes the generated nude image based on the submitted photo.

Model

nudifyme/img/instant

Pricing

0.15 / image

Create Instant Nudification Job

Use this endpoint to start a new instant nudification generation job.

Input
Description

input.imageUrl

The target image that's going to nudify.

Example Request

const response = await fetch(
  'https://api.deepixels.co/v1/generate',
  {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
      'x-api-key': 'YOUR_API_KEY'
    },
    body: JSON.stringify({
      model: 'nudifyme/img/instant',
      input: {
        imageUrl: 'https://images.pexels.com/photos/16459707/pexels-photo-16459707.jpeg',
      },
      webhook: 'YOUR_WEBHOOK_URL'
    })
  }
);

const data = await response.json();

console.log(data);

Job Creation Response

Getting Final Results

When processing is complete, the final job result can be received in either of the following ways:

  • By sending a GET request to the job status endpoint

  • Automatically via webhook if a webhook URL was provided during job creation

Both methods return the same response payload.

Input
Description

output.imageUrl

Array of generated image URLs. Even if only one image is generated, it is returned as an array to support multi-output models in the future.

Last updated