Documentation
Everything you need to integrate SmartPings into your application.
Quick Start Guide
Get started with SmartPings in just a few steps. This guide will walk you through sending your first SMS message.
1
Create an account
Sign up for a free SmartPings account to get your API credentials.
2
Create an App
Create an app in your dashboard to get your API key and secret.
3
Send your first message
Use our SDK or API to send your first SMS:
// Send an SMS with SmartPings
const smartpings = require('@smartpings/sdk');
const client = new smartpings.Client({
apiKey: 'your-api-key'
});
await client.sms.send({
to: '+237612345678',
message: 'Hello from SmartPings!',
from: 'MyApp'
});Authentication
All API requests require authentication using your API key. Include your key in the Authorization header of each request.
Request Header
Authorization: Bearer your-api-keyFull API Reference
Explore our complete API documentation with detailed endpoints, request/response examples, and interactive testing.