Comment on page
Whatsapp API send message Node JS
How to Send a Message by WhatsApp API using Node.js
Before getting started, ensure that Node.js and npm (Node Package Manager) are installed on your local machine or server.
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

Pair any number
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:

Grab your token
Before diving into the code, you need to install the axios package which will be used for HTTP requests. Run
npm install axios
from your script's directory in your terminal.We offer a convenient service for testing requests and using ready-made code fragments in any programming language. You will only need to transfer the saved API-token and fill in the required parameters:

Paste your API token and parameters, then copy code snippet
Here is an example of how to send a WhatsApp message using Node.js:
const axios = require('axios');
const BASE_URL = 'https://gate.whapi.cloud/';
const token = 'bg3FeZJ6RnjWGw32g02PoNkKO7k03GtX'; // Replace with your channel token
const data = {
to: '[email protected]',
body: 'Hello, world!',
typing_time: 0,
view_once: true,
};
axios.post(`${BASE_URL}messages/text`, data, {
headers: {
'Authorization': `Bearer ${token}`
}
})
.then(response => console.log(response.data))
.catch(error => console.error(error));
To run this script, save it in a
.js
file (for example, whapi_script.js
), navigate to the script's directory in the terminal, and run the command node whapi_script.js
. The message specified in the 'body'
of the data object will be sent to the WhatsApp number specified in 'to'
. Ensure to replace the 'to'
and 'token'
values with your actual details.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 [email protected] or [email protected]).body
: The content of the message.
This script includes basic error handling with the
.catch
method, logging any errors that occur during execution. For a production environment, be sure to introduce appropriate error and exception handling mechanisms.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, For more information, you can check out this article.
Last modified 17d ago