Seedance 2.5 videos, straight from Apify
Higgsfield does not sell API access to Seedance 2.5. This Actor uses the Higgsfield account you already pay for, so your videos are made with your own credits.
On Apify, search the Store for Seedance 2.5 Video Generator (your Higgsfield account).
Three steps
- Connect onceRun the Actor in connect mode. It gives you a link to a short, step-by-step page.
- GenerateRun the Actor with a prompt and, if you like, images, video or audio.
- Get the videoThe Actor saves the video link in its results, and a copy in its storage if you ask.
Step by step, with every click
Connect your Higgsfield account (once)
- Sign in at apify.com (a free account is enough).
- Open the Actor page and press Start / Try for free.
- In the field "What to do" pick "Connect my Higgsfield account".
- Press Start at the bottom of the page.
- Open the Log tab. A link to this website appears there within a few seconds - click it.
- Follow the steps on the page that opens. When it says "connected", close it.
Make a video
- On the same Actor page, in "What to do" pick "Generate a video".
- Write the prompt, choose resolution, aspect ratio and length.
- To use your own pictures, video or sound: set Mode to "With references" and paste public links to the files.
- Press Start and wait 3 to 9 minutes.
- Open the Output tab and click the link in the Video column.
What you need
- An Apify account.
- A Higgsfield plan that includes Seedance 2.5 (the free plan does not).
- About three minutes for the first connection.
Price
You pay Higgsfield in credits, as usual. On top, Apify charges $4 per 1,000 credits the video used, only when the video is delivered. Failed or timed-out videos are not charged by us.
| Resolution | Higgsfield credits per second | Our fee per second |
|---|---|---|
| 480p | 3 | $0.012 |
| 720p | 6.5 | $0.026 |
| 1080p | 9 | $0.036 |
From your own code
Everything goes through the Apify API with your Apify token, so billing and limits stay in your Apify account. Start a run, wait for it, then read its results:
# 1. start (connect first, once, with "action": "connect")
curl -X POST "https://api.apify.com/v2/acts/mrbuslov~higgsfield-apify-proxy/runs?token=$APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{"action": "generate", "prompt": "a paper boat on a calm lake", "resolution": "720p", "duration": 5}'
# 2. wait until status is SUCCEEDED (repeat while it is RUNNING)
curl "https://api.apify.com/v2/actor-runs/$RUN_ID?waitForFinish=60&token=$APIFY_TOKEN"
# 3. read the result: video_url, credits, charged_usd
curl "https://api.apify.com/v2/actor-runs/$RUN_ID/dataset/items?token=$APIFY_TOKEN"
All input fields and error codes: How it works.