Home Solutions Features Pricing Live Dashboard Contact
Login Start Free Trial
Documentation

Developer Documentation

Everything you need to build with Gravix Cloud.

Quick Start

Get your first video call running in under 5 minutes.

Read guide

API Reference

Full REST API documentation with examples.

Browse API

SDKs

React, React Native, Flutter, iOS, Android, JS.

View SDKs

Webhooks

Real-time event notifications for your backend.

Learn more

Code Examples

Copy-paste examples for common use cases.

Browse examples

Tutorials

Step-by-step guides for building RTC apps.

Start learning

Quick 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);