| name | heygen-cli |
|---|---|
| description | Create AI videos, manage avatars, translate videos, and download results via the HeyGen API. Use when an agent needs to generate videos from text prompts, create avatar-based videos, translate existing videos, or automate video production workflows. |
Official CLI for the HeyGen video generation API. 30+ commands auto-generated from the OpenAPI spec. All output is JSON by default.
- API Docs: https://developers.heygen.com
- Install:
curl -fsSL https://static.heygen.ai/cli/install.sh | bash - Auth: Requires
HEYGEN_API_KEYenvironment variable. The key must be provisioned by a user from https://app.heygen.com/settings/api
For attended human setup in a remote/headless terminal, heygen auth login --device can provision the shared ~/.heygen/credentials OAuth session.
Agents and CI must continue using HEYGEN_API_KEY; device login deliberately
refuses unattended environments.
# Create video from prompt (simplest path — blocks until done)
heygen video-agent create --prompt "Make a 30-second product demo" --wait
# Create avatar video with full control
heygen video create -d '{"type":"avatar","avatar_id":"josh_lite","script":"Hello world","voice_id":"en_male"}'
# Check video status
heygen video get <video-id>
# Download completed video
heygen video download <video-id>
# Check for and install a newer release
heygen update
# Verify the active credential; API-key auth also returns its scopes and expiry
heygen auth status
# List resources
heygen video list --limit 5
heygen avatar list --limit 10
heygen voice list
# Translate a video
heygen video-translate create -d '{"video":{"type":"url","url":"https://..."},"output_languages":["es"]}'Video creation is asynchronous. Two patterns:
Block until done (recommended):
heygen video-agent create --prompt "Demo video" --wait
# stdout: final resource JSON with video_url when complete
# exit 4 on timeout — stdout has partial resource, stderr has the get command to poll manually--wait exists only on some create commands. Check rather than assume: append --help
to the exact command you intend to run, including any nested segments (e.g.
heygen asset direct-uploads create --help), and use --wait only if that output
lists it. Anything else needs manual polling.
Manual polling:
heygen video create -d '{"...}' # stdout: JSON with video_id
heygen video get <video-id> # stdout: JSON with status field
heygen video download <video-id> # downloads file, stdout: JSON with pathStop conditions — a poll loop MUST have all three:
-
Poll the resource the create actually returned, and read its schema. The id in a create response may belong to another group, so that group's own
getis not always the status command — a template render is polled withvideo get, nottemplate get. Take the id from the create response, find thegetthat reads that resource, and run that exact command with--response-schemato see thestatusfield's possible values.Do not assume the vocabulary. State names differ between resources and so do spellings (some use
complete, otherscompleted). Note also that the schema lists the values but usually does not say which ones mean "still working": a state that is really waiting on user action is enumerated exactly like an in-progress one. So continue polling only on a value you can positively confirm means in-progress, and treat everything else as terminal — including values you do not recognize and values whose meaning is ambiguous. Stop and report rather than spin. -
Stop on a terminal error — a non-zero exit is not "not ready yet".
not_found/*_not_found(exit 1) means the id is wrong or the resource was deleted; it will never become ready. Same forunauthorized/forbidden(exit 3) andusage_error(exit 2). Retry only transient ones, with backoff:network_error,timeout(exit 4),rate_limit_exceeded,quota_exceeded,internal_error,unclassified_server_error.Retrying a create needs an idempotency key. A timed-out or 5xx create may already have been committed server-side, so a bare retry can bill a second resource. Generate one key per logical operation, pass it as
--idempotency-key, and reuse that exact value on every retry of it: the server replays the original result rather than creating another. Replay lasts 24 hours, so a retry after that window creates and bills a second resource; reconcile instead of retrying if the original is older. A retry sent while the original is still in flight returns 409request_in_progress, which means wait and poll, not retry again. Without a key, reconcile with the matchingget/listbefore retrying. Only endpoints whose spec declares the header accept the flag, so check--helpon the command. Keys are 1-255 characters from[A-Za-z0-9_:.-], and a UUID works:KEY=$(uuidgen) heygen video create -d '{...}' --idempotency-key "$KEY" # retry with the same $KEY
-
Cap the loop. Bound it by attempts or wall-clock and exit non-zero at the cap rather than looping forever.
Poll no faster than every 5-10s.
Use --request-schema and --response-schema on any command to see the full JSON Schema. No auth required.
heygen video create --request-schema
heygen video-agent create --request-schema
heygen video get --response-schema- stdout: JSON (always). This is the only output agents should consume.
- stderr: JSON error envelope on failure:
{"error":{"code":"...","message":"...","hint":"...","doc_url":"...","param":"..."}}(hint/doc_url/param/request_idpresent when applicable) - Do not pass
--human. It produces unstructured text that cannot be parsed.
- The CLI automatically retries 429 and selected transient 5xx (500/502/503/504) on retry-eligible requests.
- Use
heygen updateto install a newer CLI release, orheygen update --checkto report whether one exists without installing it.--checkanswers on stdout withupdate_available,current,latest,channel,install_method, andrelease_build. Branch onupdate_available, which means a newer release exists upstream, not that this install can fetch it: aninstall_methodofhomebrewornpmmust update through that manager, and an empty one means the method could not be determined. Whenrelease_buildis false the build is local and no update can be offered. Neither command needs an API key. Ifupdate_availableis true, tell the user rather than updating unprompted: a new CLI version can change command output mid-task. - Video download writes to
{video-id}.mp4by default. Override with--output-path. Errors if the file already exists; use--forceto overwrite. - For the full API reference (concepts, limits, pricing), see https://developers.heygen.com