>docs/models

Models

Nohuman is now a Video Agent powered by Seedance 2.0 Turbo. The API keeps one Nohuman endpoint while exposing Seedance-native controls for text-to-video and image-to-video generation.

# seedance-2.0-turbo

Seedance 2.0 Turbo generates cinematic 720p and 1080p videos from text prompts or reference images with native audio-visual synchronization.

Inputs

Text, image URL, references

Duration

4-15s

Resolution

720p, 1080p

Aspect ratios

16:9, 9:16, 4:3, 3:4, 1:1, 21:9

# API Parameters

ParameterTypeDescription
promptstringRequired scene, action, camera, and mood description
image_urlstringOptional reference image URL; switches request to image-to-video
durationnumber4-15 seconds; defaults to 5
resolutionstring720p or 1080p; defaults to 720p
aspect_ratiostring16:9, 9:16, 4:3, 3:4, 1:1, or 21:9
reference_imagesstring[]Optional style, character, or scene references for text-to-video
reference_videosstring[]Optional video references for text-to-video; priced separately
reference_audiosstring[]Optional audio references for text-to-video
soundbooleanGenerate native synchronized audio; defaults to true

# Response

// POST /v1/videos/generate
{
  "id": "gen_a1b2c3d4e5f6",
  "model": "seedance-2.0-turbo",
  "status": "created",
  "poll_url": "/v1/videos/generations/gen_a1b2c3d4e5f6"
}

// GET /v1/videos/generations/{id}
{
  "id": "gen_a1b2c3d4e5f6",
  "model": "seedance-2.0-turbo",
  "status": "completed",
  "result": {
    "url": "https://cdn.nohuman.studio/v/gen_a1b2c3d4.mp4",
    "format": "mp4"
  }
}