Claude
Skills
Sign in
Back

NSFW Video Generation

Included with Lifetime
$97 forever

Generate adult video content using each::sense API with safety checker disabled

Image & Videonsfwvideo-generationadult-contentartisticmature-themes

What this skill does


# NSFW Video Generation

Generate adult video content, artistic nude videos, and mature-themed animations using the each::sense API with safety restrictions disabled.

## Overview

The each::sense API enables creation of adult video content when the `enable_safety_checker` parameter is set to `false`. This unlocks generation capabilities for:

- **Artistic nude videos** - Fine art inspired videography
- **Glamour content** - Fashion and lingerie video production
- **Boudoir videos** - Intimate, tasteful bedroom aesthetics
- **Fantasy themes** - Mythological and fantasy adult content
- **Couples content** - Romantic and intimate pair scenarios

> **Important**: All requests must include `"model": "eachsense/beta",
    "stream": true,
    "enable_safety_checker": false` to generate NSFW content.

## Quick Start

```bash
curl -X POST "https://eachsense-agent.core.eachlabs.run/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "messages": [
      {
        "role": "user",
        "content": "Create an artistic nude video of a woman in a classical renaissance painting style, soft natural lighting, elegant pose"
      }
    ],
    "mode": "video",
    "model": "eachsense/beta",
    "stream": true,
    "enable_safety_checker": false
  }'
```

## Video Types

| Type | Description | Best For |
|------|-------------|----------|
| Artistic | Fine art nude videography, classical aesthetics | Museum-quality artistic expression |
| Glamour | Fashion-forward, lingerie, elegant styling | Professional modeling portfolios |
| Boudoir | Intimate bedroom settings, soft lighting | Personal romantic content |
| Fantasy | Mythological, cosplay, themed scenarios | Creative storytelling |
| Couples | Romantic pairs, intimate moments | Relationship-focused content |
| Dance | Sensual movement, choreography | Performance and movement art |

## Use Case Examples

### 1. Artistic Video Content

Create fine art inspired nude videography with classical aesthetics.

```bash
curl -X POST "https://eachsense-agent.core.eachlabs.run/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "messages": [
      {
        "role": "user",
        "content": "Generate an artistic nude video inspired by Botticelli, woman emerging from water, flowing hair, golden hour lighting, slow graceful movement, renaissance painting aesthetic"
      }
    ],
    "mode": "video",
    "model": "eachsense/beta",
    "stream": true,
    "enable_safety_checker": false
  }'
```

### 2. Glamour/Lingerie Video

Professional glamour and lingerie video production.

```bash
curl -X POST "https://eachsense-agent.core.eachlabs.run/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "messages": [
      {
        "role": "user",
        "content": "Create a glamour video of a model in black lace lingerie, luxury bedroom setting, soft studio lighting, slow confident walk toward camera, high fashion editorial style"
      }
    ],
    "mode": "video",
    "model": "eachsense/beta",
    "stream": true,
    "enable_safety_checker": false
  }'
```

### 3. Boudoir Video

Intimate boudoir-style video with soft, romantic aesthetics.

```bash
curl -X POST "https://eachsense-agent.core.eachlabs.run/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "messages": [
      {
        "role": "user",
        "content": "Generate a boudoir video, woman in silk robe by window, morning sunlight streaming through sheer curtains, gentle movement, intimate atmosphere, warm color palette"
      }
    ],
    "mode": "video",
    "model": "eachsense/beta",
    "stream": true,
    "enable_safety_checker": false
  }'
```

### 4. Dance/Movement Video

Sensual dance and movement-focused video content.

```bash
curl -X POST "https://eachsense-agent.core.eachlabs.run/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "messages": [
      {
        "role": "user",
        "content": "Create a sensual contemporary dance video, woman in flowing sheer fabric, dramatic spotlight, fluid graceful movements, artistic choreography, black background"
      }
    ],
    "mode": "video",
    "model": "eachsense/beta",
    "stream": true,
    "enable_safety_checker": false
  }'
```

### 5. Fantasy Themed Video

Mythological and fantasy adult content with creative themes.

```bash
curl -X POST "https://eachsense-agent.core.eachlabs.run/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "messages": [
      {
        "role": "user",
        "content": "Generate a fantasy video of a forest nymph, ethereal nude figure with flower crown, enchanted forest setting, magical glowing particles, mystical atmosphere, slow ethereal movement"
      }
    ],
    "mode": "video",
    "model": "eachsense/beta",
    "stream": true,
    "enable_safety_checker": false
  }'
```

### 6. Couples Content

Romantic and intimate couples video scenarios.

```bash
curl -X POST "https://eachsense-agent.core.eachlabs.run/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "messages": [
      {
        "role": "user",
        "content": "Create a romantic couples video, intimate embrace on bed with white sheets, soft natural lighting, tender moment, tasteful artistic framing, warm romantic atmosphere"
      }
    ],
    "mode": "video",
    "model": "eachsense/beta",
    "stream": true,
    "enable_safety_checker": false
  }'
```

### 7. Image-to-Video Animation

Animate an existing image into NSFW video content by providing image URLs.

```bash
curl -X POST "https://eachsense-agent.core.eachlabs.run/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "messages": [
      {
        "role": "user",
        "content": "Animate this artistic nude photo, add subtle breathing movement, gentle hair flowing, soft blinking, maintain the elegant pose and lighting"
      }
    ],
    "mode": "video",
    "image_urls": ["https://example.com/artistic-photo.jpg"],
    "model": "eachsense/beta",
    "stream": true,
    "enable_safety_checker": false
  }'
```

### 8. Consistent Character Video Series

Create multiple videos with the same character using session_id for continuity.

```bash
# First video in series
curl -X POST "https://eachsense-agent.core.eachlabs.run/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "messages": [
      {
        "role": "user",
        "content": "Create a glamour video introducing a character: tall brunette model, green eyes, elegant features, in a luxury penthouse, wearing silk robe, walking to window"
      }
    ],
    "mode": "video",
    "session_id": "glamour-series-001",
    "model": "eachsense/beta",
    "stream": true,
    "enable_safety_checker": false
  }'

# Second video continuing the series
curl -X POST "https://eachsense-agent.core.eachlabs.run/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "messages": [
      {
        "role": "user",
        "content": "Continue with the same model, now she removes the robe to reveal lingerie, turns to face camera with confident expression"
      }
    ],
    "mode": "video",
    "session_id": "glamour-series-001",
    "model": "eachsense/beta",
    "stream": true,
    "enable_safety_checker": false
  }'
```

### 9. Poolside/Beach Scene

Outdoor sensual video content with natural settings.

```bash
curl -X POST "https://eachsense-agent.core.eachlabs.run/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  

Related in Image & Video