Smart Carrier | API | SMS - Send Message

Smart Carrier | API | SMS - Send Message

Send an SMS Message

The SMS API is a RESTful-compliant which may be accessed via HTTPS using an API Key. You may obtain your API Key from your web portal or from your NumberRisk sales representative. All results are returned as JSON. Charges apply to use this API.

Below, please find the endpoints and examples:

  • Endpoint:

    •  https://api.tiltx.com/sms/send-sms

  • Method:

    • POST

  • Parameters:

    • to: Any correctly formatted telephone number.

      • Example: 3155564800, 13155564800, +1315556480

    • text: The body of the message you would like to send to the subscriber.

        • Example: Hi. This is John Smith. Call me back.

    • Optional Parameters:

      • from:  Any correctly formatted telephone number belonging to your account.

        • Example: 3155564800, 13155564800, +1315556480

        • If no from number is specified, one will be selected from your account.

  • Headers:

Postman Examples:
  1. Without From Number (Postman Screenshot: http://drops.tiltx.com/i/9XuyAt)
curl --location 'https://api.tiltx.com/sms/send-sms' \
--header 'x-api-key: XXXXXXXXXXXX' \
--header 'Content-Type: application/text' \
--data '{
"to":"8325551212",
"text":"Hello. How are you? Test message from SmartCarrier API",
}'
  1. With From Number (Postman Screenshot: http://drops.tiltx.com/i/JsAxiK)
curl --location 'https://api.tiltx.com/sms/send-sms' \
--header 'x-api-key: XXXXXXXXXXXX' \
--header 'Content-Type: application/text' \
--data '{
"to":"8325551212",
"text":"Hello. How are you? Test message from SmartCarrier API",
"from":"3155551212"
}'