tags:

views:

327

answers:

6
+4  Q: 

SMS GateWay in USA

Can somebody tell me best SMS gateway in USA . I want my application to send SMS using HTTP. So I would like to the best and cheap gateway which can provide api's to send sms. My App is written in VB.NET.

+1  A: 

If you need to send messages only in the US, you might not even need an SMS gateway. AFAIK most cell carriers in the US have free email-to-SMS services. Wikipedia has an extensive list of carriers providing SMS transit. Here are the most important ones:

Jørn Schou-Rode
but they don't provide any api to consume that and send a message. basically i want some text message to send (like notifcation) on user sms through my .NET app
Punit
moreover i want to use throgh HTTP not SMTP
Punit
A: 

Zeep Mobile

Phill Pafford
A: 

How large of a scale is your app going to be? If its small or medium scale, you could run your own gateway. For around $200 you can get your own GSM modem and then use something like slingshotSMS or pyGSM (which slingshotSMS is built on) and run your own SMS gateway. SlingshotSMS is nice because it has a HTTP interface.

You also of course would need a SIM card attached to an account that has an SMS plan.

nstehr
A: 

I have used Clickatell on several projects with great success.

They have a wide variety of integration options and can handle a huge volume of messages and their prices are reasonable for low volume as well.

Dana Holt
+2  A: 

I built a .NET library that uses Twilio's REST API to send SMS (or make voice calls). It requires a Twilio account however.

(Disclaimer: I work at Twilio, but I built this library prior to starting here)

John Sheehan
A: 

You can use Rapid SMS. It's a free open source platform, based on Django, built by some smarties at the Unicef. You can set up your own SMS server with it. It's Python but the server can have an HTTP backend, therefor you can query it using VB.net using REST.

Basically it just requires a linux server (not a big one), a GSM modem and a sim card with a contract letting you sending text messages. No need extra special contracts or gateway nor third parties and providers. The price is the market price for SMS since you use it like a normal mobile phone.

We use it to build complete information management systems in Africa, where there is no reliable landline but SMS is fine. However, there is almost no documentation, which is why it's not a widely used solution.

e-satis