System Character
NavTalk provides a diverse collection of preset digital character avatars. When establishing a WebSocket connection, you can easily specify your preferred character through URL parameters. The system will automatically load the corresponding character model and animations.
Configuration Method
// Construct URL with license and character parameters
const websocketUrl = 'wss://api.navtalk.ai/api/realtime-api';
const websocketUrlWithParams = `${websocketUrl}?license=${encodeURIComponent(license)}&characterName=${encodeURIComponent(characterPngName)}`;
// Establish WebSocket connection
const socket = new WebSocket(websocketUrlWithParams);Parameter Explanation
Parameter
Type
Required
Description
license
string
✅
Your API license key for authentication
characterName
string
✅
Preset character identifier (e.g., "girl2", "boy1")
System Supported Characters

navtalk.Alex

navtalk.Ethan

navtalk.Leo

navtalk.Lily

navtalk.Emma

navtalk.Sophia

navtalk.Mia

navtalk.Chloe

navtalk.Zoe

navtalk.Ava
Stay tuned for more characters!
Last updated