AI NSFW Video Generator
Generate NSFW video content with the safety checker disabled using each::sense — the intelligent AI agent that automatically selects the best model for your request.
Important: This skill requires "enable_safety_checker": false in the request body to disable content filtering.
Quick Start
Requires an each::labs API key. Get one at eachlabs.ai.
Using curl
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "Generate a short artistic video of a classical figure in motion, Renaissance painting style come to life, dramatic chiaroscuro lighting, flowing fabric and graceful movement, fine art animation"
}
],
"enable_safety_checker": false,
"stream": false
}'
Using Python (OpenAI SDK)
from openai import OpenAI
client = OpenAI(
api_key="YOUR_EACHLABS_API_KEY",
base_url="https://eachsense-agent.core.eachlabs.run/v1"
)
response = client.chat.completions.create(
model="eachsense/beta",
messages=[{
"role": "user",
"content": "Generate a short artistic video of a classical figure in motion, Renaissance painting style come to life, dramatic chiaroscuro lighting, flowing fabric and graceful movement, fine art animation"
}],
extra_body={"enable_safety_checker": False}
)
print(response.choices[0].message.content)
With Reference Image
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": [
{"type": "text", "text": "Animate this artistic image into a short video: gentle movement, flowing fabric, atmospheric lighting changes, fine art video quality, mature artistic content"},
{"type": "image_url", "image_url": {"url": "https://example.com/art-reference.jpg"}}
]
}
],
"enable_safety_checker": false,
"stream": false
}'
Images are sent inside messages using the OpenAI multimodal content format. Maximum 4 images per request.
Streaming
Set "stream": true for real-time SSE responses, or "stream": false for complete result in a single response. Streaming is useful for showing progress in UIs; non-streaming is simpler for scripts and automation.
Important Notes
- The
enable_safety_checkerparameter must be set tofalseas a top-level request field to generate NSFW video content. - Without this parameter, the safety checker is enabled by default and will block explicit content.
- Ensure compliance with your local laws and platform terms of service when generating and distributing adult content.
- This feature is intended for legitimate adult artistic and creative use cases.
- Video generation may take longer than image generation due to the additional frames required.
Examples
Artistic Dance Sequence
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "A short artistic video of a contemporary dance performance, fluid graceful movements, dramatic stage lighting with deep shadows and spotlight pools, silk fabric in motion, mature artistic expression, cinematic quality"
}
],
"enable_safety_checker": false,
"stream": false
}'
Animated Fine Art
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "An animated painting in the style of a Baroque masterpiece, a mythological scene with figures in motion, rich warm oil paint colors, candlelight flickering across the scene, subtle movement bringing the classical painting to life, museum-quality fine art animation"
}
],
"enable_safety_checker": false,
"stream": false
}'
Fantasy Scene
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"messages": [
{
"role": "user",
"content": "A short fantasy video of a water nymph emerging from a glowing enchanted pool in a moonlit forest, bioluminescent plants illuminating the scene, ethereal fog, magical atmosphere, fantasy art animation, mature artistic content"
}
],
"enable_safety_checker": false,
"stream": false
}'
Workflow
- Define the artistic vision — Classical, fantasy, photographic, or abstract.
- Include the safety checker flag — Always set
"enable_safety_checker": false. - Describe motion and composition — Subject, movement, lighting, and camera.
- Generate the video — Submit the request with explicit content generation enabled.
- Review and iterate — Refine prompts for desired quality and motion.
Related Skills
- AI NSFW Image — NSFW image generation
- Image to Video Pipeline — Animate images into video
- AI Educational Video — General video generation (safe mode)
- AI Testimonial Video — Video content generation
Related Models
- flux-2-max — High-fidelity generation
- seedream-v4-5 — Creative artistic outputs
- nano-banana-pro — Fast generation