Send SMS

This page outlines how to use the API to send SMS.

Send message

Example on how to send a 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!"}'

This endpoint allows you to get free cake

Body parameters

Name
Type
Description

from

string

The senders name or number.

to

string

The recipients phone number. in E.164 format. Example: "+46731234567"

text

string

The text message to be sent.

Headers

Name
Type
Description

x-api-key

string

API key provided by Ebbot.

Example response:

{
    "MessageId": [
        "5ec1dcbf-01ac-4322-9d20-a4284693f7a"
    ]
}

Last updated

Was this helpful?