Animation Library Reference
This page provides a comprehensive reference of all available animations in Meshy's Auto-Rigging & Animation API. Each animation is identified by a unique action_id
that can be used when creating animation tasks.
Available Animations
Below is a complete list of animations available for use with the Auto-Rigging & Animation API. Use the action_id
value when creating an animation task with the POST /openapi/v1/animations
endpoint.
ID | Name | Preview |
---|---|---|
0 | Idle | ![]() |
1 | Walking Woman | ![]() |
2 | Alert | ![]() |
3 | Arise | ![]() |
4 | Attack | ![]() |
5 | BackLeft Run | ![]() |
6 | BackRight Run | ![]() |
7 | BeHit FlyUp | ![]() |
8 | Dead | ![]() |
9 | ForwardLeft Run Fight | ![]() |
10 | ForwardRight Run Fight | ![]() |
11 | Idle 1 | ![]() |
12 | Idle 2 | ![]() |
13 | Jump Run | ![]() |
14 | Run 2 | ![]() |
15 | Run 3 | ![]() |
16 | Run Fast | ![]() |
17 | Skill 1 | ![]() |
18 | Skill 2 | ![]() |
19 | Skill 3 | ![]() |
20 | Walk Fight Back | ![]() |
21 | Walk Fight Forward | ![]() |
22 | Funny Dancing 1 | ![]() |
23 | Funny Dancing 2 | ![]() |
24 | Funny Dancing 3 | ![]() |
25 | Agree Gesture | ![]() |
26 | Angry Stomp | ![]() |
27 | Big Heart Gesture | ![]() |
28 | Big Wave Hello | ![]() |
29 | Call Gesture | ![]() |
30 | Casual Walk | ![]() |
31 | Catching Breath | ![]() |
32 | Chair Sit Idle Female | ![]() |
33 | Chair Sit Idle Male | ![]() |
34 | Checkout Gesture | ![]() |
35 | Clapping Run | ![]() |
36 | Confused Scratch | ![]() |
37 | Discuss While Moving | ![]() |
38 | Dozing Elderly | ![]() |
39 | Excited Walk Female | ![]() |
40 | Excited Walk Male | ![]() |
41 | Formal Bow | ![]() |
42 | Gentlemans Bow | ![]() |
43 | Handbag Walk | ![]() |
44 | Happy Jump Female | ![]() |
45 | Indoor Play | ![]() |
46 | Jump Rope | ![]() |
47 | Listening Gesture | ![]() |
48 | Mirror Viewing | ![]() |
49 | Motivational Cheer | ![]() |
50 | Phone Call Gesture | ![]() |
51 | Shouting Angrily | ![]() |
52 | Sit to Stand Transition Female | ![]() |
53 | Sit to Stand Transition Male | ![]() |
54 | Squat Stance | ![]() |
55 | Stage Walk | ![]() |
56 | Stand and Chat | ![]() |
57 | Stand to Sit Transition Male | ![]() |
58 | Step to Sit Transition | ![]() |
59 | Victory Cheer | ![]() |
60 | Walk to Sit | ![]() |
61 | Happy Jump Male | ![]() |
62 | Penguin Walk | ![]() |
63 | Arm Circle Shuffle | ![]() |
64 | All Night Dance | ![]() |
65 | Bass Beats | ![]() |
66 | Boom Dance | ![]() |
67 | Bubble Dance | ![]() |
68 | Cherish Pop Dance | ![]() |
69 | Crystal Beads | ![]() |
70 | Cardio Dance | ![]() |
71 | Denim Pop Dance | ![]() |
72 | Dont You Dare | ![]() |
73 | Fast Lightning | ![]() |
74 | Gangnam Groove | ![]() |
75 | Indoor Swing | ![]() |
76 | Love You Pop Dance | ![]() |
77 | Magic Genie | ![]() |
78 | Rhythmic Dance | ![]() |
79 | OMG Groove | ![]() |
80 | Pop Dance LSA2 | ![]() |
81 | Pod Baby Groove | ![]() |
82 | Shake It Off Dance | ![]() |
83 | Superlove Pop Dance | ![]() |
84 | You Groove | ![]() |
85 | Axe Stance | ![]() |
86 | Jump Attack | ![]() |
87 | Boxing Practice | ![]() |
88 | Chest Pound Taunt | ![]() |
89 | Combat Idel | ![]() |
90 | Counterstrike | ![]() |
91 | Double Blade Spin | ![]() |
92 | Double Combo Attack | ![]() |
93 | Dodge and Counter | ![]() |
94 | Flying Fist Kick | ![]() |
95 | Gun Hold Left Turn | ![]() |
96 | Kung Fu Punch | ![]() |
97 | Left Slash | ![]() |
98 | Run and Shoot | ![]() |
99 | Reaping Swing | ![]() |
100 | Spin Down and Stand Up | ![]() |
101 | Sword Shout | ![]() |
102 | Sword Judgment | ![]() |
103 | Simple Kick | ![]() |
104 | Side Shot | ![]() |
105 | Triple Combo Attack | ![]() |
106 | Hot walk | ![]() |
107 | Confident Strut | ![]() |
108 | Flirty Strut | ![]() |
109 | Groovy Walk | ![]() |
110 | Hello Run | ![]() |
111 | Injured Walk | ![]() |
112 | Frankenstein Walk | ![]() |
113 | Mummy Stagger | ![]() |
114 | Proud Strut | ![]() |
115 | Quick Walk | ![]() |
116 | Run to Walk Transition | ![]() |
117 | Red Carpet Walk | ![]() |
118 | Skip Forward | ![]() |
119 | Slow Orc Walk | ![]() |
120 | Touch and Run | ![]() |
121 | Thoughtful Walk | ![]() |
122 | Texting Walk | ![]() |
123 | Unsteady Walk | ![]() |
124 | Walking with Phone | ![]() |
Usage Example
To apply an animation to your rigged character, use the action_id in your API request:
const payload = {
rig_task_id: "YOUR_RIGGING_TASK_ID",
action_id: 92, // Double Combo Attack animation
};
// Send this payload to the POST /openapi/v1/animations endpoint
For more details on how to create animation tasks, see the Auto-Rigging & Animation API documentation.