NSFW Video Generation (Premium)

Generate NSFW Video

NSFW AI Video Generation lets you transform your fantasies into lifelike adult videos with ease. Simply describe any scene or upload an image, and our AI will bring it to life in motion, complete with smooth, realistic animation and high detail. It’s fast, private, and designed for total creative freedom, so you can watch your ideas unfold exactly how you imagine.

Model

nudifyme/video

Pricing

480p Resolution:    1.00 / video
720p Resolution:    2.00 / video

Create NSFW Video Generation (Premium) Job

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

Input
Description

input.prompt

Sets the resolutions for the generated result. Only accepts: 480p or 720p. Default: "720p"

input.resolution

Sets the resolutions for the generated result. Only accepts: 480p or 720p. Default: "720p"

input.aspectRatio

Sets the aspect ratio for the generated result. Only accepts: 16:9 or 9:16. Default: "16:9"

input.imageUrl

Optional. If an image URL is provided, the result will be generated as a video using the image as the starting frame or visual reference.

Example Request

Generate a video from a text prompt:

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/video',
      input: {
        prompt: 'woman in naked body and high heels dances erotically. long flowing hair. shakes her hips caresses her body. her breasts shake as she dances.',
        resolution: '720p',
        aspectRatio: '16:9',
      },
      webhook: 'YOUR_WEBHOOK_URL'
    })
  }
);

const data = await response.json();

console.log(data);

Generate a video from an image:

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

String. URL of the generated video output.

Last updated