Documentation
Developer Documentation
Everything you need to build with Gravix Cloud.
Quick Start
Get your first video call running in under 5 minutes.
Read guideAPI Reference
Full REST API documentation with examples.
Browse APISDKs
React, React Native, Flutter, iOS, Android, JS.
View SDKsWebhooks
Real-time event notifications for your backend.
Learn moreCode Examples
Copy-paste examples for common use cases.
Browse examplesTutorials
Step-by-step guides for building RTC apps.
Start learningQuick Code Example
import Gravix from '@gravix/cloud-sdk';
const gravix = new Gravix('gvx_live_your_api_key');
// Create a video room
const room = await gravix.rooms.create({
name: 'standup-call',
maxParticipants: 50,
recording: true,
});
// Join the room
const session = await gravix.sessions.join(room.id, {
video: true,
audio: true,
});
console.log('Connected to', room.name);