NOW WITH AI POWERS 

Send Notifications to WhatsApp Using API

With BeepMate, you can send messages and files to your own WhatsApp or to a WhatsApp group using both GET and POST through https://beepmate.io/send endpoint.

This allows you to automate notifications to WhatsApp.

Note: Sending notifications to WhatsApp group notifications is a VIP feature. You need to become VIP to use it.
1. Go to the BeepMate chat and type the API command, it will generate an API key for you.
explain-image
2. BeepMate uses your WhatsApp ID to know where to deliver the message.
Usually, this is your phone number in international format (e.g., 19291111111 for a US number).
Note: If you wish BeepMate to send to a group instead of a personal chat, use the group’s ID instead. Type the GROUPS command to see the ID of the WhatsApp group.
3. Send a text message using GET (or through a URL). The URL looks like this:
https://beepmate.io/send?key=YOUR_KEY&id=YOUR_ID&msg=MESSAGE
For example:
https://beepmate.io/send?key=MyKey&id=19291111111&msg=Hello%20World
Tip: Use %20 to represent spaces in the message (or any other URL encoding characters if needed).
4. Send a file (like a PDF or image) you’ll need to use a POST request with form data. The easiest way to do this is using curl, which is available on most systems. curl -k -X POST -F "file=@/path/to/yourfile.pdf" -F "key=YOUR_KEY" -F "id=YOUR_ID" "https://beepmate.io/send"
For example:
curl -k -X POST -F "file=@c:\somefile.pdf" -F "key=MyKey" -F "id=19291111111" "https://beepmate.io/send"
5. If you wish to look at some code examples to automate WhatsApp messages through Java, Python, Golang, PHP and more, check out the GIT repository.
Note: To generate a new API key, type the UNAPI command and then the API command again. The old key will no longer work.