POST
https://dashboard.whatsable.app/api/whatsapp/messages/v2.0.0
/
send
curl -X POST \
  'https://dashboard.whatsable.app/api/whatsapp/messages/v2.0.0/send' \
  -H 'Authorization: YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "to": "+1234567890",
    "text": "Hello, this is a test message from WhatsAble!"
  }'
{
  "success": true,
  "message": "<string>",
  "details": {
    "messages": [
      {
        "id": "<string>",
        "message_status": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Your WhatsAble API Key

Body

application/json

Response

200
application/json

Message sent successfully

The response is of type object.