All-in-one Calling Solution for Every Need
- 1-to-1 Call
- Group Call
- Video Call
- Voice Call
Make Your Calls Efficient and Convenient
- Offline Push
- Virtual Background
- Floating Window
Inspiring features amplify your video and voice calls beyond imagination
Call Notifications and Offline Push
Push notifications can be sent even when the application is not running in the foreground.
Floating Window
The call page can be displayed as a floating window.
Virtual Background
During video calls, you can blur your background or set the background as an image.
On-Cloud Recording
Audio/video calls can be recorded and saved to the cloud.
All-platform Support
Supports 20,000+ devices across platforms including iOS, Android, Web, Flutter, and Web.
AI Noise Suppression
Removes background noise during audio/video calls with the help of AI.
Less Stutter Under Poor Network Conditions
Reduces stutter rate and loading time under poor network conditions.
Global Deployment
GDPR-compliant service is available in over 200 countries and regions with an average end-to-end latency of less than 300 ms for cross-border connections.
20,000+ devices
High Compatibility
200+ countries
Optimized Global Deployment
<300 ms
Global End-to-end Latency
99.9% SLA
High Stability & Availability
Use Call to Enhance Any Type of User Experience
Social & Community
Make social interactions more captivating with live video chat. Meet new friends, start voice and video calls, chat with friends online, and share your daily life—all with an easy-to-use video and voice call SDK.
Telehealth
Sales and Consulting
Online Education
A Few Lines of Code, No Tedious Development
Web
iOS/Mac
Andorid
Flutter
import { TUICallKit, TUICallKitServer, TUICallType } from "@tencentcloud/call-uikit-react";
export default function App() {
const init = async () => {
await TUICallKitServer.init({ userID: 'user1', userSig: 'xxxxxxxxxxx', SDKAppID: 1400000001 });
};
const call = async () => {
await TUICallKitServer.call({ userID: 'user2', type: TUICallType.VIDEO_CALL });
};
return (
<>
<TUICallKit style={{ width: '960px', height: '630px', margin: '0 auto' }}></TUICallKit>
<div style={{ width: 350, margin: '0 auto' }}>
<button onClick={init}> step1: init </button>
<button onClick={call}> step2: 1v1 call </button>
</div>
</>
);
}