MESSAGING

Low latency - reliable API's to connect globally

Send and receive text messages using the APIs that power more than 20,000 businesses globally. Today, include SMS in your app.
Benefits

Start quickly, scale globally

Support for high-volume, global senders

Deliver SMS to your end users wherever they are with redundant telecoms infrastructure and international senders. With programmable software that powers phone number management, sender selection, compliance, content, and replies, we have overcome the scale-related issues.

Let us worry about regulations โ€ฏ

We assist you in making sure your messages are legal. The most recent local laws and operator specifications are regularly updated in our built-in global compliance engine.

Intelligent delivery

In order to guarantee quick and effective delivery of every message, redundant connection and intelligent routing make sure that your message takes the optimum delivery path with the lowest latency.

Real time analytics

Get delivery records and real-time analytics at your fingertips to know exactly what your customers have gotten.
TwoWay Messaging

A phone number provider that initiates two-way communications.

Select from more than 700 prefixes/area codes and local numbers in more than 50 different countries.

Quality is paramount.

Before being made public, every number goes through a thorough review and testing process.

API provisioning

Lots of numbers required? You can purchase and manage virtual numbers programmatically using our REST API.
Use Cases

Get up and running with use cases

Marketing SMS

Sending customized marketing SMS will demonstrate to your clients how valued they are to your business. With Routee, you can have your text delivered in 5 minutes and boost sales by up to 183 percent.

Transactional SMS

By sending timely notifications or vital information via automated text messages, you may increase client loyalty and foster a sense of trust. Utilize Routee to automate corporate communications and save time.

Two-Way SMS

Using Routee and two-way SMS, you can design campaigns that are incredibly dynamic and engaging. By using clever keyword recognition, you can hear what your clients are saying and immediately respond to their needs.

SMS Two-Factor Authentication

With top-notch security services from Routee, keep your company's data secure as well as that of your customers. In only a few seconds, your 2FA Routee solution will be able to generate PIN numbers and distribute them to the appropriate people.

SMS Survey

You can easily set up SMS surveys with our user-friendly interface. In less than five minutes, create interesting surveys that can improve the way you communicate with your users. Utilize Routee to instantly receive responses and other useful information.

Verified SMS Sender

By providing secure communication, the verified SMS function is a fantastic opportunity for businesses to effectively engage customers, foster trust, and boost loyalty. A verified icon will always be shown to signify that a Verified SMS business's bulk text messages sent through Routee are reliable.
Pricing

Fair and flexible pricing

You have a choice of price options, including committed use pricing, volume discounts, and pay-as-you-go pricing.
API Documentation

Code in the language of your choice

Send SMS using Ruby, Java, Python, PHP, C# and Go.
				
					OkHttpClient client = new OkHttpClient();

MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{ \"body\": \"Hello\",\"to\" : \"+306912345678\",\"from\": \"Hello\"}");
Request request = new Request.Builder()
  .url("https://connect.routee.net/sms")
  .post(body)
  .addHeader("authorization", "Bearer 12dc9fe4-7df4-4786-8d7a-a46d307687f4")
  .addHeader("content-type", "application/json")
  .build();

Response response = client.newCall(request).execute();