AI Parkour Video generates dynamic parkour action videos from a portrait image. Choose from 6 parkour styles or provide a reference video. Ready-to-use REST inference API, no coldstarts, affordable pricing.
Bereit
$0.75pro Durchlauf·~13 / $10
AI Parkour Video turns any portrait into an action-packed parkour video. Upload your photo, pick a style, and watch yourself vault, flip, and sprint across rooftops, cities, and forests — no stunt training required.
Two generation modes Generate from a single image, or use a reference parkour video for video-to-video animation at 720p.
6 parkour style presets From rooftop gap jumps to forest trail runs — choose the environment and movement style that fits your vision.
Flexible duration In image-to-video mode, choose from 5, 10, or 15 second clips. In video-to-video mode, duration follows the reference video (up to 120 seconds).
| Parameter | Required | Description |
|---|---|---|
| image | Yes | Portrait image (URL or file upload). |
| video | No | Reference parkour video for video-to-video animation. Duration follows the reference video (up to 120s). |
| style | No | Parkour style preset. Default: rooftop. See options below. |
| duration | No | Output length in seconds when no reference video is provided. Options: 5, 10, or 15. Default: 5. |
Image-to-video (no video provided): image + style + duration → generates a new parkour clip at 720p.
Video-to-video (video provided): image + video + style → animates the portrait onto the reference parkour footage at 720p. Duration follows the reference video.
| Style | Description |
|---|---|
| rooftop | Rooftop running, gap jumps, wall vaults, rolls. (default) |
| urban | Street railings, ledges, kong vaults, barrier slides. |
| wall_run | Vertical wall runs, wall climbs, fence vaults. |
| flip | Front flips, cartwheels, acrobatic celebration moves. |
| forest | Trail running, log jumps, branch swings, stream crossings. |
| stairs | Staircase sprints, handrail vaults, bench jumps. |
| Duration | Cost |
|---|---|
| 5s | $0.75 |
| 10s | $1.50 |
| 15s | $2.25 |
$0.45 per 5 seconds of reference video, with a minimum of 5 seconds and a maximum billable duration of 120 seconds.
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/wavespeed-ai/ai-parkour-video with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Ai Parkour Video below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/ai-parkour-video" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"image": "https://example.com/your-input.jpg",
"video": "https://example.com/your-input.mp4",
"style": "rooftop",
"duration": 5
}'
# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# When status is "completed", read the output from data.outputs[0].// npm install wavespeed
const WaveSpeed = require('wavespeed');
const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env
const result = await client.run("wavespeed-ai/ai-parkour-video", {
"image": "https://example.com/your-input.jpg",
"video": "https://example.com/your-input.mp4",
"style": "rooftop",
"duration": 5
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"wavespeed-ai/ai-parkour-video",
{
"image": "https://example.com/your-input.jpg",
"video": "https://example.com/your-input.mp4",
"style": "rooftop",
"duration": 5
}
)
print(output["outputs"][0]) # → URL of the generated outputAi Parkour Video is a WaveSpeedAI model for video generation from images, exposed as a REST API on WaveSpeedAI. AI Parkour Video generates dynamic parkour action videos from a portrait image. Choose from 6 parkour styles or provide a reference video. Ready-to-use REST inference API, no coldstarts, affordable pricing. You can call it programmatically or try it from the playground above.
POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/wavespeed-ai/ai-parkour-video.
Ai Parkour Video starts at $0.75 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.
Key inputs: `image`, `video`, `duration`, `style`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/wavespeed-ai/ai-parkour-video.
Sign up for a free WaveSpeedAI account to claim starter credits, copy your API key from /accesskey, then call the endpoint shown in the API tab of the playground. The playground also auto-generates a code sample in Python, JavaScript, or cURL for the parameters you've set.
Commercial usage rights depend on the model's license, set by its provider (WaveSpeedAI). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.