betatel-sdk
v0.0.11
Published
Official Node.js SDK for Betatel telecommunications services - SMS, Voice, Calls, and more
Downloads
13
Maintainers
Readme
Betatel SDK
Official Node.js SDK for Betatel telecommunications services.
Installation
npm install betatel-sdkFeatures
- SMS: Send and manage SMS messages
- Voice: Text-to-speech and voice services
- Call: Voice call management and control
- Carrier: Carrier information and routing
- Network: Network status and connectivity
- Billing: Usage tracking and billing management
Quick Start
import { BetatelSDK } from 'betatel-sdk';
const sdk = new BetatelSDK({
api_key: 'your_api_key_here',
user_id: 'your_user_id_here'
});
// Send SMS
await sdk.sms.send({
from: 'ExampleSender',
to: 'ExampleRecipient',
message: 'Hello from Betatel!'
});
// Make voice call
await sdk.voice.textToSpeech({
text: 'Hello world',
voice: 'en-US'
});Documentation
For detailed API documentation and examples, visit api.betatel.com/docs/category/api-documentation
Support
For support and questions, contact us at [email protected]
