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
Name
Type
Description
apiKey*
String
Request Body
Name
Type
Description
from*
string
Sender ID
message*
string
The Message Body
to*
string
The PhoneNumber
{
"success": true,
"message": "Message sent",
"code": 0,
"data": null
}
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
Was this helpful?