Skip to main content

🌐 Bulk SMS Endpoint

IntelSend provides RESTful endpoints to send bulk SMS programmatically.

info

All endpoints require Authentication Headers. Refer to the Authentication section before making requests.

URL

https://intelsend.com/api/v1/send/bulk_sms

Method POST


📑 Example Request

curl -X POST "https://intelsend.com/api/v1/send/bulk_sms" \
-H "authorization: Bearer v1_8pJc****SLLeC24" \
-H "content-type: application/json" \
-d '{
"from": "INTELSEND",
"to": ["+15551234567"],
"body": "Hello, this is a test SMS."
}'

More Details

Refer to the Request Body and Response Body for parameter details.