Developers
Build meetings into your product
Everything you need to add real-time video to your app — APIs, webhooks, and an embeddable SDK, all built on Volantis Live infrastructure.
REST API
Create, schedule, and manage meetings programmatically with a clean, predictable REST API.
Webhooks
Subscribe to real-time events — participant joins, recordings, and meeting lifecycle updates.
Embeddable SDK
Drop fully-featured video rooms into your own app with a few lines of JavaScript.
create-meeting.js
const res = await fetch('https://api.volantislive.com/v1/meetings', {
method: 'POST',
headers: { Authorization: `Bearer ${API_KEY}` },
body: JSON.stringify({
title: 'Standup',
stream_type: 'video',
}),
});
const meeting = await res.json();
console.log(meeting.join_url);