import requests
chat = {
"secret": "API_SECRET",
"account": "ACCOUNT_CODE",
"recipient": "+905012345678",
"type": "text",
"message": "Hello World!"
}
response = requests.post("https://forcemsg.com/api/send/whatsapp", data=chat)
print(response.json())