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.
Our API’s are protected by OAuth V2. OAuth V2 is a industry standard for authenticating when using API’s. Sakari provides you with a client id and secret which can be exchanged for a JWT which can then be used to call our API’s.
Login 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/token endpoint
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
Using the account id and access_token value from Step 1, make a request to the /v1/accounts/%ACCOUNT_ID%/messages endpoint. 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
Copy
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"}'
Within a few seconds, you should receive a message to the number specified.This is just 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 reoccurring schedule.
Ready to transform the way you communicate with your customers? Start your 14-day free trial with Sakari today and experience the power of seamless SMS messaging at your fingertips.No credit card required, just immediate access to all the tools you need to enhance engagement and drive results.
Assistant
Responses are generated using AI and may contain mistakes.