Messazen
Developer API

Advanced API Integration

Easily trigger automated message, SMS and email flows by connecting your systems to the Messazen infrastructure.

Powerful and Fast Integration

Messazen API has been developed to directly integrate your application or e-commerce site (Shopify, WooCommerce, custom software, etc.) to WhatsApp Cloud API, SMS, Email and Telegram channels. You can send messages across all channels with a single API Key.

RESTful Architecture JSON Request Structure Token Based Authorization High Sending Speed Webhooks Feedback

Sending Parameters

Parameter Type Status Description
module string Required whatsapp, sms, eposta veya telegram
to string Required Recipient phone number or email address
message string Required Message or template content to be sent
type string Optional Category type (e.g. marketing, otp)

Sample Request (cURL)

POST /api/v1/process
curl -X POST https://api.messazen.com/v1/process \
  -H "Content-Type: application/json" \
  -H "X-API-KEY: your_api_token" \
  -d '{
    "module": "whatsapp",
    "to": "905001234567",
    "type": "marketing",
    "message": "Merhaba, indirim başladı!"
  }'

Sample Successful Response

HTTP/1.1 200 OK
{
  "status": "success",
  "message_id": "msg_9845729482",
  "recipient": "905001234567",
  "delivered": true,
  "cost": 1.00
}