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"
  ]
}
curl --request GET \
  --url "https://www.apikiss.com/api/v1/sms?phone=%2B45+12345678&message=Hello%2C+world%21" \
  --header 'Authorization: Bearer <token>'
{
  "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

Don't have a key? Sign up to get one for free.

The phone number to send the SMS to

The message to send

Response

Click "Send Request" to see the response...