1

Prepare credentials

Create or use an active API key.
2

Pick target channel and destination

Collect channel_id and destination phone in international format.
3

Send message request

cURL
curl -X POST "https://api.wazapin.id/v1/messages" \
  -H "X-Api-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "channel_id": "wzp_wu8f3k2p",
    "to": "6281234567890",
    "type": "text",
    "text": "Hello from recipe"
  }'
4

Check message status

Use returned id to query message state.
cURL
curl -X GET "https://api.wazapin.id/v1/messages/{messageID}" \
  -H "X-Api-Key: YOUR_API_KEY"