AlibabaPaidOperationalModerated
Happyhorse 1.0 T2v
API model name: happyhorse-1.0-t2v
Happyhorse 1.0 T2v is Alibaba's music generation model, served on the Api.Airforce unified API. Access it through the OpenAI-compatible API with one key, alongside 100+ other models on Api.Airforce.
Pricing
Specifications
- Provider
- Alibaba
- Type
- music generation model
What is Happyhorse 1.0 T2v used for?
- Music & audio generation — background tracks, jingles and soundscapes.
Related models
Happyhorse 1.0 I2vAlibaba · $2.56 / 1MHappyhorse 1.0 R2vAlibaba · $2.56 / 1MHappyhorse 1.0 Video EditAlibaba · $2.56 / 1MQvq MaxAlibaba · $2.29 / 1MQvq Max LatestAlibaba · $0.77 / 1MQwen Coder PlusAlibaba · $0.55 / 1MQwen Coder PlusAlibaba · $0.55 / 1MQwen Coder Plus LatestAlibaba · $0.55 / 1MQwen Coder TurboAlibaba · $0.31 / 1MQwen Coder TurboAlibaba · $0.31 / 1MQwen Coder Turbo LatestAlibaba · $0.31 / 1MQwen FlashAlibaba · $0.02 / 1M
Happyhorse 1.0 T2v — frequently asked questions
- How much does Happyhorse 1.0 T2v cost?
- Happyhorse 1.0 T2v is billed per generation rather than per token. See the pricing page for the current rate.
- What can Happyhorse 1.0 T2v do?
- Happyhorse 1.0 T2v is Alibaba's music generation model, accessible through the Api.Airforce API.
- Is Happyhorse 1.0 T2v free to use?
- Happyhorse 1.0 T2v is a paid, pay-as-you-go model — no subscription, you are only charged for usage.
- How do I use Happyhorse 1.0 T2v via the API?
- Happyhorse 1.0 T2v is OpenAI-compatible. Point any OpenAI SDK at https://api.airforce/v1 and pass the model ID happyhorse-1.0-t2v with your Api.Airforce API key.
- Who makes Happyhorse 1.0 T2v?
- Happyhorse 1.0 T2v is Alibaba's music generation model, served through the unified Api.Airforce gateway alongside 100+ other models.
Loading live metrics…
Loading live metrics…
Loading live metrics…
Use Happyhorse 1.0 T2v via the API
OpenAI-compatible — point any OpenAI SDK at https://api.airforce/v1 and pass happyhorse-1.0-t2v as the model.
cURL
curl https://api.airforce/v1/chat/completions \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "happyhorse-1.0-t2v",
"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="happyhorse-1.0-t2v",
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: "happyhorse-1.0-t2v",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(r.choices[0].message.content);