Quick Start

Get your API keys

Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.

You can generate an API key from your Dashboard at any time

The best way to interact with our API is to use one of our official libraries:

Make your first request

To make your first request, send an authenticated request to the SMS endpoint. This will allow you to send SMS to a single phone number at a time.

Send SMS

POST https://api.getspendo.com/gateway/api/v1/send/bulk/sms

Send SMS to a specific Phone Number

Headers

NameTypeDescription

apiKey*

String

Request Body

NameTypeDescription

from*

string

Sender ID

message*

string

The Message Body

to*

string

The PhoneNumber

{
  "success": true,
  "message": "Message sent",
  "code": 0,
  "data": null
}

Good to know: You can use our API Method block to fully test all the API method.

Take a look at how you might call this method using our official libraries, or via curl:

curl --location --request POST 'https://api.getspendo.com/gateway/api/v1/send/sms' \
--header 'apiKey: test_api_key' \
--header 'Content-Type: application/json' \
--data-raw '{
  "from": "string",
  "message": "string",
  "to": "string"
}'

Last updated