Where it sits
The dashboard is a browser client of the same public API as any other. It adds no server of its own — Next.js serves the pages, and every data request goes from the browser straight to the API or the runtime. Next.js serves the pages, but the data never flows through it: every REST call and the audio WebSocket go straight from the browser to the API and the runtime. There is no server-side proxy and no session on the Next.js side.The pages
Why it is documented at all
Everything the dashboard does goes through the public REST API. It is the most complete worked example of a VoicEra client — useful reading even if you build your own console.Related
- Connecting a client — the surfaces the dashboard uses
- REST API