Create AI avatar videos with full control over avatars, voices, scripts, and backgrounds using POST /v3/videos. Two creation modes via discriminated union on type:
"type": "avatar" + avatar_id — use a HeyGen avatar from the library"type": "image" + image (AssetInput) — animate any photo via Avatar IVAll requests require the X-Api-Key header. Set the HEYGEN_API_KEY environment variable.
curl -X GET "https://api.heygen.com/v3/avatars" \
-H "X-Api-Key: $HEYGEN_API_KEY"
If HeyGen MCP tools are available (mcp__heygen__*), prefer them over direct HTTP API calls — they handle authentication and request formatting automatically.
| Task | MCP Tool | Fallback (Direct API) |
|---|---|---|
| ------ | ---------- | ---------------------- |
| Check video status / get URL | mcp__heygen__get_video | GET /v3/videos/{video_id} |
| List account videos | mcp__heygen__list_videos | GET /v3/videos |
| Delete a video | mcp__heygen__delete_video | DELETE /v3/videos/{video_id} |
Video generation (POST /v3/videos) and avatar/voice listing are done via direct API calls — see reference files below.
GET /v3/avatars/looks → pick a look, note its id (this is the avatar_id) and default_voice_id. See avatars.mdGET /v3/voices → pick a voice matching the avatar's gender/language. See voices.mdPOST /v3/videos with avatar_id, voice_id, script, and optional background per scene. See video-generation.mdGET /v3/videos/{video_id} until status is completed. See video-status.mdThis skill = precise control (specific avatar, exact script, custom background).
create-video = prompt-based ("make me a video about X", AI handles the rest).
Read these as needed — they contain endpoint details, request/response schemas, and code examples (curl, TypeScript, Python).
Core workflow:
POST /v3/videos request fields, avatar input modes, voice settings, backgroundsGET /v3/avatars (groups) and GET /v3/avatars/looks (looks → avatar_id)GET /v3/voices with filtering by language, gender, engineGET /v3/videos/{id} polling patterns and downloadCustomization:
Advanced:
type: "image" (Avatar IV), AI-generated avatarsGET /v3/avatars/looks and download preview_image_url so the user can see the avatar before committingdefault_voice_id pre-matched for natural resultstest: true to avoid consuming credits (output will be watermarked)共 2 个版本