Getting Started with the Sakari SMS API
This guide helps to get you up and running with the Sakari SMS API within 5 minutes. You’ll learn how to authenticate your application so you can call our API’s as well as send your first SMS message.
What You’ll Need
- An account with Sakari. If you don’t already have an account, you can register at: https://hub.sakari.io/signup
- A tool such as curl, Postman or alternative to make API calls.
- A mobile device with working phone number capable of receiving SMS messages.
Step 1 – Authenticate
Our API’s are protected by OAuth V2. OAuth V2 is an industry standard for authenticating when using APIs. Sakari provides you with a client id and secret which can be exchanged for a JWT which can then be used to call our APIs.
- Log in to https://hub.sakari.io to retrieve your API Credentials. Once logged in, click on the “cog” icon in the top right corner. This will display your account details. Towards the bottom, you will see “API Credentials”. If you haven’t requested your credentials already you should see a “Request Credentials” button. Click on this and record the account id and API credentials which are displayed.
- Using your preferred tool/language, make a request to the
/oauth2/tokenendpoint. - Example Response:
{ “access_token”: “[access token here]”, “token_type”: “Bearer” } - Record the access_token from the response for use in the next step.
Authentication Example Code Snippet
curl -X POST
https://api.sakari.io/oauth2/token \
-H 'Content-Type: application/json' \
-d '{
"grant_type": "client_credentials",
"client_id": "%CLIENT_ID%",
"client_secret": "%CLIENT_SECRET%"
}'
Step 2 – Send a Message
There is one simple API call which you can use to send one message or a thousand messages. This API has the following parameters:
- A list of contacts.
- Message template – you can send a static message to all the contacts or you can use placeholders to dynamically insert data based upon the contact.
Actions
- Using the account id and access_token value from Step 1, make a request to the
/v1/accounts/%ACCOUNT_ID%/messagesendpoint. Ensure you replace the placeholders for %ACCOUNT_ID%, %ACCESS_TOKEN% and %MOBILE_NUMBER%.
Note: Ensure the mobile number is in an international format (e.g. +13471234567).
Sending a Message Example Code Snippet
curl -X POST
https://api.sakari.io/v1/accounts/%ACCOUNT_ID%/messages \
-H 'Authorization: bearer %ACCESS_TOKEN%' \
-H 'Content-Type: application/json' \
-d '{
"contacts": [{ "mobile": {"number": "%MOBILE_NUMBER%"}}],
"template": "Congratulations! You have sent your first text message"
}'
Step 3 – Verify message receipt
Within a few seconds, you should receive a message to the number specified.
This is just a tiny piece of what our API platform at Sakari has to offer. Check out our other blog posts which will show you how to use templates to send customized messages to each contact or how to schedule messages to be sent at a later time or on a recurring schedule.