Web Quickstart

This guide walks through adding Vonative voice AI to a web application using the LiveKit JavaScript SDK. By the end, you’ll have a working browser-based voice call to your assistant.

Before you start

You need:
  • An assistant created in the Vonative dashboard
  • An API key (Developer → API Keys)
  • A modern browser (Chrome, Edge, Safari, Firefox)

1. Install the SDK

For React apps, also install the components library:

2. Get a token from Vonative

Call the /initiate-call endpoint to create a LiveKit room and receive connection credentials.
The response contains everything you need to connect:

3. Connect to the room

Vanilla JavaScript

React

4. End the call

Full example

A complete working example (HTML + JS) is available on GitHub: github.com/boboyii-app/webcall-example

Next steps