Flash SMS
Send flash SMS messages that appear directly on the recipient's screen without user interaction, ideal for urgent notifications or time-sensitive alerts that need immediate attention, supporting international phone numbers with proper country code formatting.
Send a flash SMS
Send a flash SMS using multiple SMS providers. The first successful response will be returned.
GET
/
flash-sms
Parameters
| Name | Type | Description | Required |
|---|---|---|---|
| to | string | The phone number to send the flash SMS to | Required |
| message | string | The message to send | Required |
Response Schema
{
"type": "object",
"properties": {
"message_id": {
"type": "string",
"description": "The ID of the flash SMS",
"example": "1234567890"
},
"status": {
"type": "string",
"description": "The status of the flash SMS",
"example": "sent"
}
}
}
curl --request GET \
--url "https://www.apikiss.com/api/v1/flash-sms?to=%2B45+12345678&message=Hello%2C+world%21" \
--header 'Authorization: Bearer <token>'
{
"type": "object",
"properties": {
"message_id": {
"type": "string",
"description": "The ID of the flash SMS",
"example": "1234567890"
},
"status": {
"type": "string",
"description": "The status of the flash SMS",
"example": "sent"
}
}
}
Response
Click "Send Request" to see the response...
Authorizations
Authorization
header
required
Authentication token in the format "Bearer <token>"