Free WhatsApp Messages API UDICTI TCMS-CRDB BootCamp 2022
- Sending OTPs, Short Messages
- Monitoring Software Actions like Logging Info's
- Sending Anonymous Messages. to people
- Iniate Conversation with +255 754 503 886 i.e Make sure the receiver's whatsapp account number has sent atleast one physical message to +255 754 503 886
- Use less than 256 characters in your message.
GET https://crdb.zipa.tech/zipa-message/receiver-phone/your-message
# install requests
$ pip3 install requests
# confirm if installed and see version
$ python3 -m requests --version
## Check your versions on your terminal
>>> import requests
# define message requirements
>>> otp_token = 878778
# include Country code without plus +
>>> receiver_phone = "255718017738"
# view message
>>> my_message = "Hello Friend, Your WhatsApp OTP token is {}".format(otp_token)
>>> my_message
... "Hello Friend, Your WhatsApp OTP token is 878778"
# view link
>>> link = "https://crdb.zipa.tech/zipa-message/{}/{}/".format(receiver_phone, my_message)
>>> link
... "https://crdb.zipa.tech/zipa-message/255718017738/Hello Friend, Your WhatsApp OTP token is 878778
# send your message
>>> response = requests.get(link)
>>> response
... {"success":True}