Skip to main content
ArtEmotion
Video

HeyGen Avatar V Digital Twin

Credit-based pricing.

Output
video
Aspect ratio
16:9, 9:16, 4:5, 5:4, 1:1
Resolution
720p, 1080p, 4k

Example prompt

Hi there! I'm here to introduce our new product line — let me walk you through the key features.
Try this prompt →
LLM-ready

API & LLM schema

Exact request contract for this model. Agents can fetch it from /api/v1/models?id=fal-ai/heygen/avatar5/digital-twin.

POST/api/v1/generate20 fields · 4 required
FieldTypeRequirementContract
model_idconstantRequiredArtEmotion model identifier.
extraobjectOptionalModel-specific settings may also be nested here.
max_creditsnumberOptionalReject before submission if the estimated list price exceeds this cap. · Range: 1–…
webhook_urlstringOptionalFormat: uri
webhook_secretstringOptionalOptional model input.
folder_idstringOptionalOptional model input.
promptstringRequiredOptional model input.
avatar_idstringRequiredYour HeyGen Digital Twin look id — GET /v3/avatars/looks?avatar_type=digital_twin. Required. · Default:
voice_idstringRequiredYour HeyGen voice_id (GET /v2/voices) — the voice the twin speaks your script in. Required. · Default:
voice_speednumberOptionalSpeech speed multiplier (0.5–1.5). · Default: 1 · Range: 0.5–1.5
voice_pitchnumberOptionalVoice pitch adjustment (-50 to 50). · Default: 0 · Range: -50–50
voice_volumenumberOptionalVoice audio volume. 1.0 = full, 0.0 = silent — useful when mixing with background audio. · Default: 1 · Range: 0–1
remove_backgroundbooleanOptionalRender with a removed/transparent background (overrides the Background setting). · Default: false
fitstringOptionalHow the avatar is fitted to the output canvas. Auto picks based on source/canvas orientation. · Allowed: , cover, contain · Default:
localestringOptionalOptional BCP-47 locale for multilingual delivery (e.g. en-US, es-ES). Leave empty to auto-detect. · Default:
bg_typestringOptionalBackground behind the avatar (ignored when Remove Background is on). · Allowed: color, image · Default: color
bg_valuestringOptionalHex color (e.g. #1144FF) for 'color', or HTTP(S) image URL for 'image'. · Default:
output_formatstringOptionalVideo output format. · Allowed: mp4, webm · Default: mp4
aspect_ratiostringOptionalAllowed: 16:9, 9:16, 4:5, 5:4, 1:1
resolutionstringOptionalAllowed: 720p, 1080p, 4k
Minimal request example
{
  "model_id": "fal-ai/heygen/avatar5/digital-twin",
  "prompt": "Hi there! I'm here to introduce our new product line — let me walk you through the key features.",
  "avatar_id": "",
  "voice_id": ""
}
Raw JSON Schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.artemotion.ai/api/v1/models?id=fal-ai%2Fheygen%2Favatar5%2Fdigital-twin",
  "title": "HeyGen Avatar V Digital Twin generation request",
  "description": "Request body accepted by POST /api/v1/generate for fal-ai/heygen/avatar5/digital-twin.",
  "type": "object",
  "properties": {
    "model_id": {
      "type": "string",
      "const": "fal-ai/heygen/avatar5/digital-twin",
      "description": "ArtEmotion model identifier."
    },
    "extra": {
      "type": "object",
      "additionalProperties": true,
      "description": "Model-specific settings may also be nested here."
    },
    "max_credits": {
      "type": "number",
      "minimum": 1,
      "description": "Reject before submission if the estimated list price exceeds this cap."
    },
    "webhook_url": {
      "type": "string",
      "format": "uri",
      "maxLength": 2048
    },
    "webhook_secret": {
      "type": "string",
      "maxLength": 512
    },
    "folder_id": {
      "type": "string"
    },
    "prompt": {
      "type": "string"
    },
    "avatar_id": {
      "title": "Digital Twin ID",
      "description": "Your HeyGen Digital Twin look id — GET /v3/avatars/looks?avatar_type=digital_twin. Required.",
      "default": "",
      "type": "string"
    },
    "voice_id": {
      "title": "Voice ID",
      "description": "Your HeyGen voice_id (GET /v2/voices) — the voice the twin speaks your script in. Required.",
      "default": "",
      "type": "string"
    },
    "voice_speed": {
      "title": "Voice Speed",
      "description": "Speech speed multiplier (0.5–1.5).",
      "default": 1,
      "type": "number",
      "minimum": 0.5,
      "maximum": 1.5,
      "multipleOf": 0.05
    },
    "voice_pitch": {
      "title": "Voice Pitch",
      "description": "Voice pitch adjustment (-50 to 50).",
      "default": 0,
      "type": "number",
      "minimum": -50,
      "maximum": 50,
      "multipleOf": 1
    },
    "voice_volume": {
      "title": "Voice Volume",
      "description": "Voice audio volume. 1.0 = full, 0.0 = silent — useful when mixing with background audio.",
      "default": 1,
      "type": "number",
      "minimum": 0,
      "maximum": 1,
      "multipleOf": 0.05
    },
    "remove_background": {
      "title": "Remove Background",
      "description": "Render with a removed/transparent background (overrides the Background setting).",
      "default": false,
      "type": "boolean"
    },
    "fit": {
      "title": "Fit",
      "description": "How the avatar is fitted to the output canvas. Auto picks based on source/canvas orientation.",
      "default": "",
      "type": "string",
      "enum": [
        "",
        "cover",
        "contain"
      ]
    },
    "locale": {
      "title": "Locale",
      "description": "Optional BCP-47 locale for multilingual delivery (e.g. en-US, es-ES). Leave empty to auto-detect.",
      "default": "",
      "type": "string"
    },
    "bg_type": {
      "title": "Background Type",
      "description": "Background behind the avatar (ignored when Remove Background is on).",
      "default": "color",
      "type": "string",
      "enum": [
        "color",
        "image"
      ]
    },
    "bg_value": {
      "title": "Background",
      "description": "Hex color (e.g. #1144FF) for 'color', or HTTP(S) image URL for 'image'.",
      "default": "",
      "type": "string"
    },
    "output_format": {
      "title": "Output Format",
      "description": "Video output format.",
      "default": "mp4",
      "type": "string",
      "enum": [
        "mp4",
        "webm"
      ]
    },
    "aspect_ratio": {
      "type": "string",
      "enum": [
        "16:9",
        "9:16",
        "4:5",
        "5:4",
        "1:1"
      ]
    },
    "resolution": {
      "type": "string",
      "enum": [
        "720p",
        "1080p",
        "4k"
      ]
    }
  },
  "required": [
    "model_id",
    "prompt",
    "avatar_id",
    "voice_id"
  ],
  "additionalProperties": false
}

FAQ

How much does HeyGen Avatar V Digital Twin cost on ArtEmotion?

Credit-based pricing. You pay in ArtEmotion credits — every plan and top-up converts USD to credits at a fixed rate.

Do I get my credits back if HeyGen Avatar V Digital Twin fails?

Yes — failed generations are never charged. The credits are released back to your balance automatically.

Can I call HeyGen Avatar V Digital Twin from the API?

Yes. Use POST /api/v1/generate with model_id: "fal-ai/heygen/avatar5/digital-twin". See the API reference for the full schema.

Where are my generations stored?

Every output is saved to your personal Library. You can export or delete everything any time from Privacy & deletion.

Ready to generate with HeyGen Avatar V Digital Twin?

Start now →

No commitment. New accounts get 50 free credits on signup. See pricing.