Or jump from this list on a smaller screen.

This is a page from the Audivra documentation. Developer exportsindex: http://127.0.0.1:3000/docs/llms.txt, full corpus: http://127.0.0.1:3000/docs/llms-full.txt, OpenAPI: http://127.0.0.1:3000/docs/openapi.json, Postman: http://127.0.0.1:3000/docs/postman.json. Press ⌘K to search docs.

First talking avatar in 5 minutes

Create a lip-synced talking-head video from text — dashboard or API — and download the MP4 when the job completes.

Creators
~5 min

Outcome: A completed MP4 talking avatar you can share or embed in your product.

  1. 1

    Create an account and open the playground

    Sign up at /signup — you receive 12,000 free credits (~20 minutes of audio or ~20 minutes of video at typical rates).

    Open the Avatars studio at /app/avatars or use the playground at /app/playground to test without writing code.

  2. 2

    Pick a voice and avatar preset

    Choose voice_id aurora (English studio) or zuri-sw (Swahili regional) from the voice library.

    Choose avatar_id studio-host for a photo-based presenter or sales-closer for MuseTalk lip-sync over video reference.

    See the full preset list on the Avatars concept page if you need regional voices or expressive models.

  3. 3

    Submit your script

    Paste 1–3 sentences (under 500 characters keeps fast-path routing cheap). Example: “Welcome to our product launch — Audivra turns text into talking video in seconds.”

    Click Generate. GPU rendering takes 2–30 seconds; the dashboard shows SSE progress (TTS → lip-sync → render).

  4. 4

    Download or poll via API

    When status is completed, download the MP4 from the dashboard or use the API flow below for automation.

    API — create job and poll
    curl -X POST https://audivra.dev/api/v1/generate \
      -H "Authorization: Bearer sk_live_…" \
      -H "Content-Type: application/json" \
      -d '{"text":"Welcome to our launch.","voice_id":"aurora","avatar_id":"studio-host"}'
    
    # → { "job_id": "…", "status": "PROCESSING", "poll": "/api/v1/jobs/…" }
    
    curl https://audivra.dev/api/v1/jobs/{job_id} \
      -H "Authorization: Bearer sk_live_…"
    
    # When completed → download_url or GET /api/v1/avatar/{job_id}/video
  5. 5

    Upgrade when you ship commercially

    Free tier videos are watermarked and non-commercial. Starter ($5/mo) removes the watermark and unlocks 720p output.

    Creator Pro ($18/mo) adds 1080p, voice cloning, and prepaid PAYG top-ups for production traffic.

    1 video second = 10 credits. Top up from $5 when you exceed your monthly quota.

Related reference

/docs/api/avatars

/docs/concepts/credits

/docs/get-started/dashboard