Send us a text message to

+49 1579 6355660 

and see it appear in the browser. Don't worry, your number will be masked for anonymity.

Recent Messages

timestampcaller numbermessage

Retrieve text messages with our sipgate.io library

Use our node library to receive SMS as they come in.
Deploy it into reality with a few lines of code.
const { createHistoryModule, sipgateIO } = require("sipgateio");

const { HistoryEntryType } = require("sipgateio/dist/history");

const sipgateio = sipgateIO({
  token_id: process.env.SIPGATE_TOKEN_ID,
  token: process.env.SIPGATE_TOKEN
});

const historyModule = createHistoryModule(sipgateio);

console.log("Waiting for SMS...");

setInterval(() => {
  historyModule
    .fetchAll({
      types: [HistoryEntryType.SMS],
      directions: ["INCOMING"],
      archived: false,
    })
    .then((messages) => {
      messages.forEach((message) => {
        console.log(`SMS received:\n${message.smsContent}`);
      });
      historyModule.batchUpdateEvents(messages, () => ({
        archived: true,
      }));
    })
    .catch(console.error);
}, 5000);

sipgate.io on GitHub

On our GitHub page you can find code examples and documentation for sipgate.io. Check it out now!
github.com/sipgate-io