AlibabaPaidOperational
Wan2.6 R2v
API model name: wan2.6-r2v
Wan2.6 R2v is Alibaba's video generation model, served on the Api.Airforce unified API. Access it through the OpenAI-compatible API with one key, alongside 65+ other models on Api.Airforce.
Pricing
Billed per generation — see the pricing page for current rates.
Specifications
- Provider
- Alibaba
- Type
- video generation model
What is Wan2.6 R2v used for?
- Video generation — short clips and animations from text prompts.
Related models
Qwen ImageAlibabaQwen Image 2.0Alibaba · $55.68 / 1MQwen Image EditAlibabaQwen MaxAlibaba · $0.51 / 1MQwen PlusAlibaba · $0.18 / 1MQwen TurboAlibabaQwen3Alibaba · $0.06 / 1MQwen3 0.6bAlibaba · $0.06 / 1MQwen3 1.7bAlibaba · $0.06 / 1MQwen3 14bAlibaba · $0.21 / 1MQwen3 235b A22bAlibaba · $0.42 / 1MQwen3 30b A3bAlibaba · $0.15 / 1M
Wan2.6 R2v — frequently asked questions
- How much does Wan2.6 R2v cost?
- Wan2.6 R2v is billed per generation rather than per token. See the pricing page for the current rate.
- What can Wan2.6 R2v do?
- Wan2.6 R2v is Alibaba's video generation model, accessible through the Api.Airforce API.
- Is Wan2.6 R2v free to use?
- Wan2.6 R2v is a paid, pay-as-you-go model — no subscription, you are only charged for usage.
- How do I use Wan2.6 R2v via the API?
- Wan2.6 R2v is OpenAI-compatible. Point any OpenAI SDK at https://api.airforce/v1 and pass the model ID wan2.6-r2v with your Api.Airforce API key.
- Who makes Wan2.6 R2v?
- Wan2.6 R2v is Alibaba's video generation model, served through the unified Api.Airforce gateway alongside 65+ other models.
Loading live metrics…
Loading live metrics…
Use Wan2.6 R2v via the API
OpenAI-compatible — point any OpenAI SDK at https://api.airforce/v1 and pass wan2.6-r2v as the model.
cURL
curl https://api.airforce/v1/chat/completions \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "wan2.6-r2v",
"messages": [{ "role": "user", "content": "Hello!" }]
}'Python
from openai import OpenAI
client = OpenAI(base_url="https://api.airforce/v1", api_key="$AIRFORCE_API_KEY")
r = client.chat.completions.create(
model="wan2.6-r2v",
messages=[{"role": "user", "content": "Hello!"}],
)
print(r.choices[0].message.content)JavaScript
import OpenAI from "openai";
const client = new OpenAI({ baseURL: "https://api.airforce/v1", apiKey: process.env.AIRFORCE_API_KEY });
const r = await client.chat.completions.create({
model: "wan2.6-r2v",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(r.choices[0].message.content);