Page cover

SEEDANCE-1.5 PRO

Base-Path:

https://api.hyprlab.io/v1

Video Path:

https://api.hyprlab.io/v1/video/generations
chevron-right 📌 Request Body Documentationhashtag

prompt (string, required)

  • Description: The main text input that guides the video generation.

  • Validation:

    • Must be a non-empty string.

image (string, optional)

  • Description: Input image for image-to-video generation.

  • Validation:

    • Must be a string (URL, Data URI, or base64 string).

last_frame_image (string, optional)

  • Description: Input image for last frame generation.

  • Validation:

    • Must be a string (URL, Data URI, or base64 string).

duration (integer, optional)

  • Description: Specifies the length of the video in seconds.

  • Validation:

    • Must be minimum of 2 and maximum of 12.

    • Defaults to 5 if not provided.

aspect_ratio (string, optional)

  • Description: Video aspect ratio.

  • Validation:

    • Must be one of the following valid aspect ratios:

      • 16:9

      • 4:3

      • 1:1

      • 3:4

      • 9:16

      • 21:9

      • 9:21

camera_fixed (boolean, optional)

  • Description: Whether to fix camera position.

  • Validation:

    • Must be a boolean (true or false).

seed (integer, optional)

  • Description: A seed for deterministic generation during processing.

  • Validation Rules:

    • Must be an integer between 0 and 4,294,967,295.


Post Request:

circle-info

When you send a POST request to create a new Video Generation, the API will return a response containing a Polling URL that can be used to check the processing status and retrieve the results.

curl https://api.hyprlab.io/v1/video/generations \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HYPRLAB_API_KEY" \
  -d '{
    "model": "seedance-1.5-pro",
    "prompt": "A cute cat playing outside.",
    "image": "https://site.com/path/of/image.png",
    "last_frame_image": "https://site.com/path/of/image.png",
    "duration": 5,
    "aspect_ratio": "16:9"
  }'

Polling for Status:

circle-info

To check the status and retrieve the result, send a GET request to the polling URL provided in the response.

circle-info

NOTE: Video Generation took 3-4 Minutes before it finish.

Pricing Details

Model Name:
  • seedance-1.5-pro

Discount:
  • 30% off

Price:
  • $0.0364 / Second

Last updated