Everything powered by nohuman-x33 — our state-of-the-art video generation model from $0.21 per 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.
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"
}'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.
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"
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.
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"
}'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.
# 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"}'