Integrate WhatsApp with your systems: ERP,CRM, your app or website. You can use any programmable language to easily.
curl --location --request POST 'https://api.whatsper.co/send?token=your_user_token' \
--data-raw '{
"session": "your_session_identifier",
"type": "text",
"to": "5731327xxxxx",
"content": "Hello from whatsper.co"
}'
var data = {
session: "your_session_identifier",
type: "text",
to: "5731327xxxxx",
content: "Hello from whatsper.co"
};
var requestOptions = {
method: 'POST',
body: JSON.stringify(data)
};
fetch("https://api.whatsper.co/send?token=your_user_token", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));
<?php
$client = new Client();
$body = '{
"session": "your_session_identifier",
"type": "text",
"to": "5731327xxxxx",
"content": "Hello from whatsper.co"
}';
$request = new Request('POST', 'https://api.whatsper.co/send?token=your_user_token', [], $body);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "https://api.whatsper.co/send?token=your_user_token"
method := "POST"
payload := strings.NewReader(`{`+"
"+`
"session": "your_session_identifier",`+"
"+`
"type": "text",`+"
"+`
"to": "5731327xxxxx",`+"
"+`
"content": "Hello from whatsper.co"`+"
"+`
}`)
client := &http.Client {
}
req, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
return
}
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
import requests
url = "https://api.whatsper.co/send?token=your_user_token"
payload = "{\r\n \"session\": \"your_session_identifier\",\r\n \"type\": \"text\",\r\n \"to\": \"5731327xxxxx\",\r\n \"content\": \"Hello from whatsper.co\"\r\n}"
headers = {}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
Whatsper is a multifunctional API for WhatsApp and the best tool for companies and programmers. It can be integrated into any system for customer accounting, CRM, ERP or websites to send messages, notify users and many more.
Reach over 2.1 billion users worldwide using WhatsApp API.
Our platform work great for large enterprises. Please contact us.
Whatsper is a multipurpose API for WhatsApp, the best tool for businesses and developers. It allows you to send and receive WhatsApp messages automatically through your website or application.
A Session is an object that allows you to link a whatsapp account and its phone number in order to send messages.
You can always create as many sessions as you want. One session per whatsapp number will be handled. The message package is purchased for all sessions, that is, the sessions will use your general message balance.
You can always disconnect the WhatsApp session and reactivate it with the same or a new phone in each session.
With the free account you will only be able to send 100 messages, all functionalities will be available.
Whatsper does not have a limit as to how many messages you can send. We do not recommend sending more than 5000 messages a day. But when you send bulk messages users Maybe mark your messages as spam which will lead to your number being blocked. So take care to send messages only to your clients only. And the messages should not be spam or annoying advertisements. The messages should be services (reminders - OTP - subscription - or any message the customer is waiting for.
Maximum length: 4096 characters.
File limit: 50 MB
Yes, we do not recommend sending more than 5000 messages a day. But when you send bulk messages users Maybe mark your messages as spam which will lead to your number being blocked. So take care to send messages only to your clients only. And the messages should not be spam or annoying advertisements. The messages should be services (reminders - OTP - subscription - or any message the customer is waiting for.
No, we do not discount your messages when they cannot be sent, e.g. when the destination number does not exist.
Can find our Terms of service Here
Can find our Privacy policy Here
Have questions about Whatsper?