POST
/
whatsapp
cURL
curl --request POST \
  --url https://api.contiguity.com/send/whatsapp \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "to": "+1234567890",
  "message": "Hello, world!"
}'
{
  "id": "req_xxxxxxxxxxxxxxxx",
  "timestamp": 1755815097884,
  "api_version": "v2025.8.21",
  "object": "response",
  "data": {
    "message_id": "wapp_1234567890"
  }
}
Only customers who lease numbers that support WhatsApp can use this endpoint.
Phone numbers must be in E.164 format with country codes.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

Send a WhatsApp message

The response is of type object.