Ai Parkour Video
Playground
Try it 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.
Features
AI Parkour Video
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.
Why Choose This?
-
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, generate clips from 5 to 15 seconds. In video-to-video mode, duration follows the reference video (up to 120 seconds).
Parameters
| 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. Range: 5–15. Default: 5. |
Two Modes
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 Options
| 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. |
How to Use
- Upload your portrait — a clear, front-facing photo works best.
- Upload a reference video (optional) — provide a parkour video to use video-to-video mode.
- Pick a style — choose from 6 presets, or leave as default (rooftop).
- Set duration (optional) — only applies when no reference video is provided. Choose 5–15 seconds.
- Submit — generate, preview, and download your parkour video.
Pricing
Image-to-Video (no reference video)
| Duration | Cost |
|---|---|
| 5s | $1.05 |
| 10s | $2.10 |
| 15s | $3.15 |
Video-to-Video (with reference video)
$0.45 per 5 seconds of reference video, with a minimum of 5 seconds and a maximum billable duration of 120 seconds.
Best Use Cases
- Social media content — Create eye-catching parkour videos of yourself for Instagram Reels and TikTok.
- Entertainment & fun — Put yourself or friends into wild action sequences without leaving home.
- Creative projects — Use custom reference videos to place any portrait into specific parkour footage.
- Gaming & avatar content — Generate action clips for gaming personas or digital characters.
Pro Tips
- A clear, front-facing portrait with a visible full body produces the most convincing parkour animation.
- In video-to-video mode, use high-quality parkour reference footage with clear, dynamic movement for best results.
- Try different style presets on the same portrait photo to find the most visually striking result.
Notes
- image is always required; all other parameters are optional.
- When a reference video is provided, duration is determined by the reference video length (up to 120 seconds).
- When no reference video is provided, duration controls the output length (5–15 seconds).
- Ensure image and video URLs are publicly accessible if using links rather than direct uploads.
- Please ensure your content complies with WaveSpeed AI’s usage policies.
Authentication
For authentication details, please refer to the Authentication Guide.
API Endpoints
Submit Task & Query Result
# Submit the task
curl --location --request POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/ai-parkour-video" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}" \
--data-raw '{
"style": "rooftop",
"duration": 5
}'
# Get the result
curl --location --request GET "https://api.wavespeed.ai/api/v3/predictions/${requestId}/result" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}"
Parameters
Task Submission Parameters
Request Parameters
| Parameter | Type | Required | Default | Range | Description |
|---|---|---|---|---|---|
| image | string | Yes | - | The URL of the input image (required). | |
| video | string | No | - | Reference parkour video URL. When provided, uses video-to-video animation (720p). When omitted, generates from image. | |
| style | string | No | rooftop | rooftop, urban, wall_run, flip, forest, stairs | Parkour style preset. |
| duration | integer | No | 5 | 5 ~ 15 | The duration of the generated video in seconds. Used when video is not provided. |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data.id | string | Unique identifier for the prediction, Task Id |
| data.model | string | Model ID used for the prediction |
| data.outputs | array | Array of URLs to the generated content (empty when status is not completed) |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.has_nsfw_contents | array | Array of boolean values indicating NSFW detection for each output |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |
Result Request Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| id | string | Yes | - | Task ID |
Result Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data | object | The prediction data object containing all details |
| data.id | string | Unique identifier for the prediction, the ID of the prediction to get |
| data.model | string | Model ID used for the prediction |
| data.outputs | object | Array of URLs to the generated content (empty when status is not completed). |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |