Video Generation · heygen
HeyGen Template Generate API
Generate a video from a predefined template. Fill in variable values (text, images, avatars) to produce customized videos.
Quickstart
Get an API key at skillboss.co/console, then send your first request:
cURL
curl https://api.skillboss.co/v1/run \
-H "Authorization: Bearer $SKILLBOSS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "heygen/template-generate",
"inputs": { /* model-specific input fields */ }
}'Pricing
Vendor List Price
See your console for billing details.
Prices shown are the vendor's published list price. SkillBoss does not mark up token costs — see pricing for billing details.
Code examples
Python
import requests
resp = requests.post(
"https://api.skillboss.co/v1/run",
headers={"Authorization": "Bearer $SKILLBOSS_API_KEY"},
json={"model": "heygen/template-generate", "inputs": { }},
)
print(resp.json())JavaScript / TypeScript
const res = await fetch("https://api.skillboss.co/v1/run", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.SKILLBOSS_API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({ model: "heygen/template-generate", inputs: {} }),
});Endpoint
| Method | POST |
| URL | https://api.skillboss.co/v1/run |
| Auth | Authorization: Bearer $SKILLBOSS_API_KEY |
| Content-Type | application/json |
Related
- SkillBoss documentation — full API reference and SDK guides
- Use cases for HeyGen Template Generate
- Pricing