Get a list of available motion presets that can be used with the Kling 2.6 model to control animation styles.
Request
curl --request GET \
--url 'https://api.unifically.com/kling-v2-6/motions' \
--header 'Authorization: Bearer YOUR_API_KEY'
Query Parameters
Number of motions to returnDefault: 30
Filter by categoryOptions: new, viral, effects, ugcNote: Omit this parameter to get all motions
Search term to filter motions by name or description
Request Examples
Get All Motions
curl --request GET \
--url 'https://api.unifically.com/kling-v2-6/motions' \
--header 'Authorization: Bearer YOUR_API_KEY'
Get Motions by Category
curl --request GET \
--url 'https://api.unifically.com/kling-v2-6/motions?category=viral' \
--header 'Authorization: Bearer YOUR_API_KEY'
Search Motions
curl --request GET \
--url 'https://api.unifically.com/kling-v2-6/motions?search=zoom&size=10' \
--header 'Authorization: Bearer YOUR_API_KEY'
Response
{
"code": 200,
"success": true,
"data": {
"items": [
{
"id": "7077cde8-7947-46d6-aea2-dbf2ff9d441c",
"name": "Default Motion",
"category": "new",
"preview_url": "https://..."
}
],
"total": 30
}
}
Response Fields
HTTP status code (200 for success)
Motion presets dataArray of motion preset objectsUnique motion preset ID (UUID) - use this in the motion_id parameter
Display name of the motion preset
Motion category: new, viral, effects, or ugc
URL to preview video demonstrating the motion effect
Total number of motions returned
Motion Categories
| Category | Description |
|---|
| new | Recently added motion presets |
| viral | Popular and trending motion effects |
| effects | Special visual effects and transitions |
| ugc | User-generated content motion styles |
Preview the motion effects using the preview_url to see how they will affect your video before generating.