Convert your Android phone into an SMS gateway.

Save money by using your phone to send and receive SMS messages via a simple programmable API with end-to-end encryption.

⚡Trusted by 3,081+ happy users who have sent or received more than 651,009+ messages.

Get Started

Step 1
Create an account on httpsms.com and obtain you API key on the settings page.
Step 2
Download and install the companion android application on your phone and sign in using your API Key.
import HttpSms from 'httpsms'

const client = new HttpSms('' /* Get the API Key from https://httpsms.money-rise.com/settings */);

client.messages.postSend({
    content:   'This is a sample text message',
    from:      '+18005550199', // Put the correct phone number here
    to:        '+18005550100', // Put the correct phone number here
})
.then((message) => {
    console.log(message.id); // log the ID of the sent message
})