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
to 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"
  ]
}
curl --request GET \
      --url https://apikiss.com/v1/chuck-norris-facts/ \
      --header 'Authorization: Bearer <token>'
{
      "fact": "Chuck Norris can divide by zero."
    }

Authorizations

Authorization
header
required

Authentication token in the format "Bearer <token>"

Try it out

0/160 characters

Result

// Result will appear here