Whatsapp API send message GO (Golang)
How to Send a Message by WhatsApp API using GO
Last updated
How to Send a Message by WhatsApp API using GO
Last updated
Whapi.Cloud provides a gateway to interact with customers through WhatsApp. This tutorial will help you learn how to send messages through the WhatsApp API using the Go Programming Language.
After registering on our platform, go to the channel page, which will be immediately available to you.
You will now need to link any number to the channel. To do this, use the QR code that is displayed inside the channel.
Open your WhatsApp mobile app, navigate to Settings -> Linked devices -> Link a device -> Scan QR code
Our service enables you to interact with the API without the need for an uninterrupted phone connection. Operate WhatsApp on up to four paired devices and one mobile device concurrently.
Now save the generated API-Key token on channel page:
To send a text message, you need to make a request to:
POST https://gate.whapi.cloud/messages/text
Here's how you can dispatch a WhatsApp message using Golang:
The parameters are as follows:
to
: The recipientโs WhatsApp number in international format (e.g., 14409416972) or chatID for contact or group (e.g 14409416972@s.whatsapp.net or 12560234567890@g.us).
body
: The content of the message.
typing_time
: The time in seconds when it is displayed that you are typing a message. Not a required parameter.
If you have any inquiries or would like to share your experiences with us, please feel free to reach out.
Additional endpoint for easy send media-file as message. Use request body as file and inpath parameters for send parameters. Media message can be one of the following types:
You can Send a ppt audio recording to the phone number or group, But WhatsApp is sensitive to this extension, you need to be in OGG format and the codecs should be the opus. Our API has an automatic video and audio converter for the necessary codecs compatible with WhatsApp. For more information, you can check out this article.