msg logo
python icon

how to send whatsApp messages using api Python

send whatsapp messages easily using api and start in minutes.

Full code
import requests response = requests.post( "https://api.sendmsg.dev/message/batch", json={ "to": ["+1234567890", "+0987654321"], "message": "Hello from MSG!", # "token": "YOUR_API_TOKEN" # Optional, gives full access } ) result = response.json()
Other available languages