![sms77 alt text](https://www.sms77.io/wp-content/uploads/2019/07/sms77-Logo-400x79.png)
sms77io SMS Gateway API Client
This library relies on the the global fetch API.
So in order to to use it with node u may need to install isomorphic-fetch.
Installation
Via Yarn
yarn add sms77-client
Via NPM
npm install sms77-client
In the Browser
<script src="https://unpkg.com/browse/sms77-client@1.8.4/dist/Sms77Client.umd.js"></script>
Example
new Sms77Client('MY_SUPER_SECRET_SMS77_IO_API_KEY!')
.balance()
.then(balance => console.log(`My balance is: ${balance}`))
.catch(error => console.error(error));
Implemented endpoints:
- balance
- contacts
- lookup
- pricing
- sms
- status
- validate_for_voice
- voice
ToDo