// PRODUCTS

ONE MODEL.
FOUR PRODUCTS.

Everything powered by nohuman-x33 — our state-of-the-art video generation model from $0.21 per video.

// 001: TEXT_TO_VIDEO

Text-to-Video

Cinematic video generation from text prompts at API scale

Generate high-quality videos from text descriptions using the nohuman-x33 model. Describe your scene, camera movement, and style — get back a cinematic video in MP4 or WebM format. Supports up to 1080p/60fps with optional 4K upscaling and durations up to 10 minutes.

KEY FEATURES
Up to 1080p/60fps native, 4K with upscale
Max 10 minutes per generation
Style presets: cinematic, anime, realistic, documentary
Negative prompts for fine-grained control
Async generation with polling or webhooks
MP4 and WebM output formats
API EXAMPLE
text-to-video.sh
curl -X POST https://api.nohuman.studio/v1/videos/generate \
  -H "Authorization: Bearer $NOHUMAN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "A cinematic aerial shot of Tokyo at sunset, neon lights reflecting off wet streets",
    "duration": 15,
    "resolution": "1080p",
    "fps": 24,
    "style": "cinematic"
  }'
// 002: IMAGE_TO_VIDEO

Image-to-Video

Animate any image into a video. One reference frame is all you need.

Upload a reference image and describe the desired motion — nohuman-x33 generates a smooth, high-quality video that brings your image to life. Perfect for product shots, character animation, social media content, and marketing videos.

KEY FEATURES
Animate from JPG, PNG, or WebP reference images
Describe motion, camera movement, and effects in natural language
Preserves visual fidelity of the source image
Supports 16:9, 9:16, 1:1, and 4:3 aspect ratios
Up to 1080p/60fps output
Batch processing for multiple images (Growth+)
API EXAMPLE
image-to-video.sh
curl -X POST https://api.nohuman.studio/v1/videos/generate \
  -H "Authorization: Bearer $NOHUMAN_API_KEY" \
  -F "image=@product_photo.jpg" \
  -F "prompt=Camera slowly orbits the product, soft studio lighting, shallow depth of field" \
  -F "duration=10" \
  -F "resolution=1080p"
// 003: TK_DRAMA

TikTok Content Engine

Build a viral TikTok content machine with our SOTA video model API.

Generate high-retention vertical video content with persistent characters, settings, and visual style. The TikTok Content Engine maintains character consistency across scenes and episodes, with native 9:16 output optimized for TikTok, Reels, and Shorts. Available on Pro tier and above.

KEY FEATURES
Character consistency across scenes and episodes
Persistent visual style and settings
Multi-episode generation with story continuity
Optimized output for TikTok, Reels, and Shorts
9:16 vertical video natively supported
Batch episode generation with webhook callbacks
API EXAMPLE
tk-drama.sh
curl -X POST https://api.nohuman.studio/v1/videos/generate \
  -H "Authorization: Bearer $NOHUMAN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "Episode 3: The protagonist discovers the letter in the old bookshop, close-up reaction shot",
    "duration": 30,
    "resolution": "1080p",
    "style": "cinematic",
    "character_ref": "char_abc123",
    "series_id": "series_xyz789"
  }'
// 004: AI_FILMMAKING

AI Filmmaking

Full-length AI video production. From script to screen.

Combine text-to-video, image-to-video, and video extension to produce longer-form AI films. Chain generations with consistent characters and scenes, add 4K upscaling, and export cinema-ready content. Enterprise tier includes dedicated GPU allocation and custom model weights for brand-specific visual styles.

KEY FEATURES
Video extension for seamless scene continuation
4K upscaling for cinema-grade output
Custom model weights for brand consistency (Enterprise)
Dedicated GPU allocation for predictable throughput
Priority queue with guaranteed generation times
99.99% SLA for production workflows
API EXAMPLE
ai-filmmaking.sh
# Generate initial scene
curl -X POST https://api.nohuman.studio/v1/videos/generate \
  -H "Authorization: Bearer $NOHUMAN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "Wide establishing shot of a futuristic city at dawn",
    "duration": 30,
    "resolution": "1080p",
    "style": "cinematic"
  }'

# Upscale to 4K
curl -X POST https://api.nohuman.studio/v1/videos/upscale \
  -H "Authorization: Bearer $NOHUMAN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"video_id": "gen_abc123", "target": "4k"}'

READY TO BUILD?

Get your API key and start generating videos in minutes.