msg logo
elixir icon

how to send whatsApp messages using api elixir

send whatsapp messages easily using api and start in minutes.

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