GET
/
minimax-hailuo
/
motions
Get Available Motions
curl --request GET \
  --url https://api.unifically.com/minimax-hailuo/motions \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "total": 77,
    "cursor": 2,
    "items": [
      {
        "id": "446b5239-4281-4a2c-a353-0de562e405bc",
        "name": "General",
        "description": "Neutral setup that works in most situations. Balanced and flexible",
        "media": {
          "url": "https://cdn.higgsfield.ai/...",
          "type": "video",
          "width": 600,
          "height": 800
        },
        "categories": ["New"]
      }
    ]
  }
}
Retrieve available motion presets for Minimax-Hailuo video generation models.

Request

curl -X GET 'https://api.unifically.com/minimax-hailuo/motions?size=50' \
  -H 'Authorization: Bearer YOUR_API_KEY'

Parameters

size
number
Number of motions to fetchDefault: 30
cursor
number
Number of pageDefault: 1

Response

{
  "success": true,
  "data": {
    "total": 77,
    "cursor": 2,
    "items": [
      {
        "id": "446b5239-4281-4a2c-a353-0de562e405bc",
        "name": "General",
        "description": "Neutral setup that works in most situations. Balanced and flexible",
        "media": {
          "url": "https://cdn.higgsfield.ai/...",
          "type": "video",
          "width": 600,
          "height": 800
        },
        "categories": ["New"]
      }
    ]
  }
}

Response Fields

success
boolean
Whether the request was successful
data
object
Response data
total
number
Total number of available motions
cursor
number
Pagination cursor for fetching more results
items
array
Array of motion preset objects
id
string
Unique motion preset identifier (UUID format)
name
string
Display name of the motion preset
description
string
Description of the motion preset behavior
media
object
Preview media for the motion preset
url
string
URL of the preview media
type
string
Media type (e.g., video)
width
number
Width of the preview media in pixels
height
number
Height of the preview media in pixels
categories
array
Array of category tags for the motion preset