Creating Videos with Your Personal Avatar and Voice
Bring Your Digital Persona to Life
Welcome to Personal Avatar Creation!
Konpro's platform gives everyone the tools to build personalized AI videos using one-of-a-kind avatars and custom voices. This guide will help you animate your digital double with your own visual and audio style.
Step 1: Set Up Your Personal Avatar
Begin by making your custom avatar on the Konpro web editor. Once your avatar is generated, give it a unique name for easy reference in future projects. Konpro processes your recording and, once finished, lists your new creation in your Avatar Library.
If you've already made an avatar, find its identifier and name under the Avatars section of your dashboard.
Step 2: Retrieve Your Avatar and Voice IDs
To use your personal avatar and unique voice in the API, you need their corresponding IDs.
Get your avatar list:
curl --request GET \
--url https://api.konpro.ai/v1/avatars \
--header 'Accept: application/json' \
--header 'x-api-key: <your-api-key>'This will return your available avatars, including the custom ones you created. Note down the avatar_id for your selection.
Get your voice list:
curl --request GET \
--url https://api.konpro.ai/v1/voices \
--header 'Accept: application/json' \
--header 'x-api-key: <your-api-key>'The response will include your voice options—look for the voice_id that matches your uploaded or personalized voice.
Step 3: Create Your Personalized Video
Now that you have both the avatar and voice IDs, you're ready to generate your video. The process is the same as for ready-made avatars—just insert your own identifiers into the relevant fields in your video creation API call.
Example:
Update avatar_id and voice_id in your POST request to match the values for your custom assets.
For additional parameters—such as backgrounds, animation styles, or advanced settings—see the full API documentation to explore further customization.