Looking For Cheapest SMS Sending Service With API

Tonmoy Ajize

Registered Member
Joined
Jun 15, 2016
Messages
63
Reaction score
8
Hello There,

Title says all, please suggest me if you know about it

Thanks.
 
Why don't people reply in help threads ?
 
I believe Twilio is probably the cheapest option for outgoing SMS (starting from $0.0075/message).

You can browse Mashape for several other API options. Here's how Twilio's would work in PHP for example:

PHP:
<?php
// Using http://unirest.io/php
$response = Unirest\Request::post("https://twilio.p.mashape.com/{accountsid}/SMS/Messages.json",
  array(
  "Authorization" => "<required>",
  "X-Mashape-Key" => "<your mashape key>",
  "Content-Type" => "application/x-www-form-urlencoded",
  "Accept" => "text/plain"
  ),
  array(
  "Body" => "<required>",
  "From" => "<required>",
  "To" => "<required>"
  )
);
 
I already can get for $0.01/SMS ... i need cheaper than this ... Thanks
 
Back
Top