Alibaba (Qwen) / wan2.2-animate-move
WAN 2.2 Animate Move
WAN 2.2 Animate Move generates video for text-to-video, product concepts, and social clips.
Context
0K
tokens
Input
$0.216
/ second
Output
$0.216
/ second
Quality
#48
Elo 1210
Overview
What this model is good for
WAN 2.2 Animate Move generates video for text-to-video, product concepts, and social clips.
Model capabilities
Video output
Can produce video output for generation or editing workflows.
Model maker
Model maker and access
This section shows the model maker, SeaLink model ID, protocol, and pricing information.
Alibaba (Qwen)
Called through SeaLink's unified account, balance, and OpenAI-compatible API.
Protocol
Video generation API
Base URL: https://test.sealink.io/v1
Pricing
Pricing and cost sense
Prices come from the current model catalog. Simple estimates help users judge whether the model fits production volume.
Actual billing follows usage logs and billing records; caching and media pricing depend on the endpoint.
API
Copy into your code
The model page should make it clear which model to copy, which base URL to use, and where to get an API Key.
model
wan2.2-animate-movebase_url
https://test.sealink.io/v1Auth
Bearer $SEALINK_API_KEYcurl https://test.sealink.io/v1/chat/completions \-H "Authorization: Bearer $SEALINK_API_KEY" \-H "Content-Type: application/json" \-d '{"model": "wan2.2-animate-move","messages": [{"role": "user", "content": "Hello."}]}'
from openai import OpenAIclient = OpenAI(base_url="https://test.sealink.io/v1", api_key="<your-sealink-key>")resp = client.chat.completions.create(model="wan2.2-animate-move",messages=[{"role": "user", "content": "Hello."}],)print(resp.choices[0].message.content)
import OpenAI from "openai";const client = new OpenAI({baseURL: "https://test.sealink.io/v1",apiKey: process.env.SEALINK_API_KEY,});const resp = await client.chat.completions.create({model: "wan2.2-animate-move",messages: [{ role: "user", content: "Hello." }],});console.log(resp.choices[0].message.content);