Skip to content

MsGineMessaging API Documentation

Send SMS, Email, and push notifications with a simple, powerful API

MsGine

Quick Example ​

Get started with just a few lines of code:

typescript
import { MsGineClient } from '@msgine/sdk'

const client = new MsGineClient({
  apiKey: process.env.MSGINE_API_KEY!,
})

const result = await client.sms.send({
  to: '+256701521269',
  message: 'Hello from MsGine!'
})

console.log('Message sent:', result.id)

Installation ​

bash
pnpm add @msgine/sdk
bash
npm install @msgine/sdk
bash
yarn add @msgine/sdk

What's Next? ​

Explore the Documentation ​

Ready to Start? ​

  1. Create an account to get your API key
  2. Install the SDK or integrate with the REST API
  3. Send your first message in minutes

Released under the MIT License.