Developer Portal
Messagea Developer Documentation
Explore API specifications, SDK guides, and code examples for building secure real-time messaging apps.
Getting Started
Quickstart installation guides and SDK setup.
Quick Installation Guide
Add Messagea WebSocket client SDK to your web or mobile app in under 2 minutes.
npm install @messagea/sdk-client
Client Authentication Setup
Configure end-to-end Signal protocol encryption keys for user sessions.
import { MessageaClient } from '@messagea/sdk';
const client = new MessageaClient({
apiKey: process.env.NEXT_PUBLIC_MESSAGEA_KEY,
environment: 'production'
});