GET
/
kling-v2-6
/
motions
Get Motions
curl --request GET \
  --url https://api.unifically.com/kling-v2-6/motions \
  --header 'Authorization: Bearer <token>'
{
  "code": 200,
  "success": true,
  "data": {
    "items": [
      {
        "id": "7077cde8-7947-46d6-aea2-dbf2ff9d441c",
        "name": "Default Motion",
        "category": "new",
        "preview_url": "https://..."
      }
    ],
    "total": 30
  }
}
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

size
integer
Number of motions to returnDefault: 30
category
string
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

code
integer
default:"200"
HTTP status code (200 for success)
data
object
Motion presets data
items
array
Array of motion preset objects
id
string
Unique motion preset ID (UUID) - use this in the motion_id parameter
name
string
Display name of the motion preset
category
string
Motion category: new, viral, effects, or ugc
preview_url
string
URL to preview video demonstrating the motion effect
total
integer
Total number of motions returned

Motion Categories

CategoryDescription
newRecently added motion presets
viralPopular and trending motion effects
effectsSpecial visual effects and transitions
ugcUser-generated content motion styles
Preview the motion effects using the preview_url to see how they will affect your video before generating.