🚀 Integration Examples

See how easy it is to add borderless communication to your application

💬 Live Demo: Mongolian ↔ Russian Communication

This demonstrates exactly your use case: You write in Mongolian, Russians see it in Russian, and vice versa!

Disconnected - Click Connect to start
FluentAPI Bot: Welcome! Write in any language and everyone sees it in their preferred language.

🛠️ Integration Code - Super Simple!

Add borderless communication to any app in just 5 lines:

// 1. Install the SDK
npm install fluent-api-sdk

// 2. Initialize with your language
const FluentAPI = require('fluent-api-sdk');
const client = new FluentAPI({ 
    apiKey: 'fluent_live_sk_xxxxx',
    baseURL: 'https://www.fluentapi.io'
});

// 3. Send borderless messages
const result = await client.borderless({
    conversationId: 'chat_123',
    senderId: 'user_mongolia',
    senderLang: 'mn',
    recipientId: 'mechanic_mexico',
    recipientLang: 'es',
    message: 'Сайн байцгаана уу?' // Hello in Mongolian
});

// 4. Get translated result
console.log(result.translated.text); // "Hola, ¿cómo estás?"
                        

🎯 Perfect For

💬

Messengers

WhatsApp-style apps with instant translation

🎮

Gaming

Players communicate across language barriers

🌐

Social Networks

Comments, posts, DMs in any language

🎧

Customer Support

Help customers in their native language

💕

Dating Apps

Connect people regardless of language

💼

Forums

Global discussions without language limits

📱 Messenger Integration

// Add to your messaging app
const { Facebook } = require('fluent-api-sdk');

const fb = new Facebook({ 
  apiKey: 'fluent_live_sk_xxxxx',
  pageAccessToken: 'your-fb-token'
});

// Automatic translation middleware
app.use('/webhook', fb.createExpressMiddleware());
                            

🎮 Game Integration

// Add to your game lobby
const gameChat = new FluentAPI({
  apiKey: 'fluent_live_sk_xxxxx'
});

const result = await gameChat.borderless({
  conversationId: 'lobby_' + gameId,
  message: 'Good luck everyone!'
});
// Players see it in their language!