Videoslash API
Creative studioGeneratedModels

Gen-4 Aleph

Creative Studio video model reference for the public API.

Gen-4 Aleph

Public model ID: gen-4-aleph

Asset type: video

Category: Video Generation

Starting credits: 5 (defaults: 5)

Prompt required.

Start a generation

curl -s -X POST "$API_BASE_URL/v1/creative-studio/generations" \
  -H "Authorization: Bearer vsl_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "modelId": "gen-4-aleph",
    "prompt": "Your prompt here",
    "video": ["https://example.com/reference.jpg"],
    "aspect_ratio": "16:9"
  }' | jq

Poll GET /v1/creative-studio/generations/{id} until status is completed. Completed generations return outputUrl on cdn.videoslash.com.

Media parameters

NameTypeConstraintsDefaultDescription
videostringrequired · max items: 1—Input video to generate from. Videos must be less than 16MB. Only 5s of the input video will be used.
reference_imagestringoptional · max items: 1—Reference image to influence the style or content of the output.

Settings parameters

NameTypeConstraintsDefaultDescription
aspect_ratioenumoptional · enum: 16:9, 9:16, 4:3, 3:4, 1:1, 21:916:9Video aspect ratio
seedintegeroptional—Random seed. Set for reproducible generation

On this page