SMS
Send standard SMS messages to any phone number worldwide with delivery status tracking, supporting Unicode text, custom sender IDs where available, and proper international number formatting with country codes.
Sends an SMS
Send an SMS using multiple SMS providers. The first successful response will be returned.
GET
/
sms
Parameters
| Name | Type | Description | Required |
|---|---|---|---|
| phone | string | The phone number to send the SMS to | Required |
| message | string | The message to send | Required |
Response
{
"type": "object",
"properties": {
"success": {
"type": "boolean",
"description": "Whether the SMS was successfully sent",
"example": true
}
},
"required": [
"success"
]
}
Authorizations
Authorization
header
required
Authentication token in the format "Bearer <token>"
Path Parameters
phone
string
required
The phone number to send the SMS to
message
string
required
The message to send
Response
200 - application/json
success
boolean
required
Whether the SMS was successfully sent
Example: true
Try it out
Response
Click "Send Request" to see the response...