SMS API
Explore the Ebbot SMS API.
Using the SMS API
Base URL for SMS API
Authentication
POST /sms/v1 HTTP/1.1
Host: api.ebbot.ai
x-api-key: your_api_key
Content-Type: application/jsonSend message
curl --location 'https://api.ebbot.ai/sms/v1' \
--header 'x-api-key: your_api_key' \
--header 'Content-Type: application/json' \
--data '{"from": "The Company", "to": "+1234567", "text": "This is a message!"}'import requests
import json
url = "https://api.ebbot.ai/sms/v1"
payload = json.dumps({
"from": "The Company",
"to": "+1234567",
"text": "This is a message!"
})
headers = {
'x-api-key': 'your_api_key',
'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)Name
Type
Description
Name
Type
Description
Last updated
Was this helpful?

