Quickstart

This guide will get you all set up and ready to use the our API. We'll cover how to get started using one of our API and how to make your first API request. We'll also look at where to go next to find all the information you need to take full advantage of our powerful REST API.

Making your first API request

You are ready to make your first call to the API. Below, you can see how to send a POST request to the sms endpoint to send a sms .

POST
/v1/sms
curl -G - /v1/sms \
      -H 'Content-Type': 'application/json'\
      -H 'apiKey':'string'
      -d {
        'sender':'senderName' \
        'to' :'91XXXXXXXXX1' \
        'text' : 'Hello, World!' \
        'type' :'TRANS'\

      }

Was this page helpful?