RSS Feed
  1. Indyarocks.com API added

    March 2, 2012 by Ubaid

    Just completed the API for IndyaRocks.com

    Enjoy!


  2. Android Application

    February 29, 2012 by Ubaid

    Many of our users have incorporated Ubaid.tk API’s in their own applications. This helps them be carefree of the code updates, and are sure they are dependent on a reliable API. Just lisitng down few of the Apps available for download for your Android Phones.

    1. Textoo - By Mr Kiran Kumar. The App is available for iOS / Android / Blackberry
    2. FreeSMSSender : By Michal. App is available for Android.
    3. Free SMS Way : By Vinothkumar. App is available for Android.

    If you have developed an App for iOS / Android / Symbian / Blackberry / Windows Phone, let us know. We will publish your links on our website, to promote your Apps


  3. Windows Phone App

    February 27, 2012 by Ubaid

    Many of our users have incorporated Ubaid.tk API’s in their own applications. This helps them be carefree of the code updates, and are sure they are dependent on a reliable API. Just lisitng down few of the Apps available for download for your Windows Phones.

    1. SMS India – By Mr Kunal Varma. The App is available for Windows Phone 7.

    If you have developed an App for iOS / Android / Symbian / Blackberry / Windows Phone, let us know. We will publish your links on our website, to promote your Apps!


  4. Future SMS API for Way2sms & 160by2 Added!

    February 6, 2012 by Ubaid

    Folks, I have updated my API to accommodate future SMS. Please note this is currently in beta phase, and a few bugs might be there. Also, this API is currently available for Way2sms only. Other service providers will be added soon!

    Click here to learn how to send Future SMS!

    Happy SMSing!

    Update 07/02
    Sorry folks, have to close down the Future API. Will make it up once a few important bugs are fixed.

    Update 09/02
    Future SMS API is back with a bang! Also, added API for 160by2! Now you can schedule your sms through my API for both Way2sms as well as 160by2 :)

    Note : Currently, Future SMS will not work for DND numbers. So if my API says SMS Sent and its not scheduled in your account, the number might be in DND.


  5. 160by2 API added!

    January 22, 2012 by Ubaid

    Thank you all for your support. I have updated the API’s on my site.

    Updates :

    1. 160by2 API added
    2. Removed API’s of Whozzat, SMSIndia, SMSInside. These sites are DEAD/USELESS!

    Will post more updates soon!


  6. Java Mobile App

    December 6, 2011 by Ubaid

    Hi Folks. Our user Mr Salahuddin has successfully released a beta version of a Java App for mobile phones which are Java Enabled. Please note that this app is still in Beta phase, and may have a few bugs.

    This is a very simple app, connects to ubaid.tk and allows you to send SMS right from your mobile phone. It uses your gprs connection, or wifi connection (if supported by your phone) and sends the sms. The data transfer will not exceed 5kb per message, and hence the maximum you can be charged on your gprs would be 5 paise per message if your data pack is not activated.

    Download your copy of this java app and please provide your feedback’s!

    Download Now!

    For errors / issues, please reply with the exact steps to replicate this error, along with your phone model. This will help us in fixing the issues you are facing.

    Happy SMSing…!!!


  7. 3 New API’s added!

    December 1, 2011 by Ubaid

    Welcome back folks. I have now updated the API with following new features,

    1. 3 New SMS API’s added.
      1. Freesms8
      2. Sms440
      3. BhokaliSms
    2. Fixed errors with Full On SMS api.(Login failed, multiple sms)
    3. Developed a Complete Framework to easily add new API’s. Now development of New API’s will be faster than ever.

    Future Developments in progress :

    1. Flash SMS facility for supported providers.
    2. Group SMS for FullOnSMS
    3. Add API’s for
      1. 160By2
      2. SmsZE
      3. MyCantos

    Meanwhile enjoy the new and existing features on this free Sms API service.


  8. SMS Tools

    November 3, 2011 by Ubaid

    Here I will list down all the Tools you can use to Send SMS directly from your PC. The tools are either created by Me, or other users of my API.

    1. Firefox Plugin :

    Hello Folks. I have created a plugin for all Firefox users, which allows you to send the SMS right from your browser sidebar, without even coming to my site!

    Use the shortcut key (Alt + U) to open the Sidebar!

    More info on the Plugin here..

    Cheers!

    2. Android Application

    Yes! What you are hearing is right. We are looking out for developers who can develop an Application for Android Mobile Phones. Developers can directly use our API’s to send the sms from their apps. We will promote your apps. You are free to integrate any ads in your application and free to keep all the amount. Contact me for more details!

    3. SMS Through Excel :

    This Excel application was submitted by my API user, Mr Chandresh Chaturvedi.

    This allows you to Send and Manage Multiple / Bulk SMS within your excel file. Very easy to use, Fast and Friendly. Must have for any Bulk SMS user.

    Download the file from here..


  9. Firefox Plugin

    September 16, 2011 by Ubaid

    Hello Folks. I have created a plugin for all Firefox users, which allows you to send the SMS right from your browser sidebar, without even coming to my site!

    Use the shortcut key (Alt + U) to open the Sidebar!

    Important features : Automatically updates new service providers, without requiring you to update the plugin. Cool na :)

    Download the plugin from here..
    Cheers!


  10. API Usage

    August 29, 2011 by Ubaid

    Hello Folks,

    Today I am going to explain how to use my SMS API service in your own application. Please find the example source codes given below.

    1. C# Example. Can be used directly in any .NET Application.

    public void send(string uid, string password, string message, string no)
    {
    HttpWebRequest myReq = (HttpWebRequest)WebRequest.Create("http://ubaid.tk/sms/sms.aspx?uid=" + uid + "&pwd=" + password + "&msg=" + message + "&phone=" + no + "&provider=way2sms");
    
    HttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
    System.IO.StreamReader respStreamReader = new System.IO.StreamReader(myResp.GetResponseStream());
    string responseString = respStreamReader.ReadToEnd();
    respStreamReader.Close();
    myResp.Close();
    }
    

    2. PHP example.

    <?php
        $uid = 'USERNAME';
        $pwd = 'PASSWORD';
        $phone = 'SEND MSG TO PHONE NO';
        $msg = 'MESSAGE TEXT';
    	$provider = 'way2sms or fullonsms or any other provider supported by ubaid.tk';
    
        $content =  'uid='.rawurlencode($uid).
                    '&pwd='.rawurlencode($pwd).
                    '&phone='.rawurlencode($phone).
                    '&msg='.rawurlencode($msg).
    				//'&codes=1'.  // Use if you need a user freindly response message.
                    '&provider='.rawurlencode($provider);
    
        $sms_response = file_get_contents('http://ubaid.tk/sms/sms.aspx?'.$content);
    
        echo $sms_response;
    ?> 
    

    Required Params : uid, pwd, phone, msg.

    uid : your userid for the required sms provider
    pwd : your password for the required sms provider
    provider : way2sms(default), fullonsms, smsindia, whozzat, smsinside, site2sms. if you do not specify any provider, way2sms will be used by default.
    phone : phone number whom you want to send sms. seperate multiple phone numbers with a comma (,)
    msg : your sms message, unlimited chars. will be sent as multiple msgs if crosses the message length for any provider

    Optional Parameters
    codes : 1. Send this if you require a user friendly msg from the server. for example, if codes=1 is not provided the server will return the result as an integer. 1 means SMS sent, -1 means some server error, -2 means invalid username, -3 means invalid message text, -4 means login failed.
    Currently, the following service providers are supported for SMS sending.

    1. Way2sms : 140 Chars
    2. Full On SMS : 140 Chars
    3. 160 by 2 : 140 Chars
    4. Site 2 SMS : 260 Chars.
    5. SMSFI.com : 138 Chars.
    6. Freesms8 : 160 Chars.
    7. Sms440 : 440 Chars
    8. BhokaliSms : 440 Chars

    Update 09 Feb 2012 :
    For Future SMS (currently only Way2sms and 160by is supported), send these parameters also along with your original URL :
    future : 1. Send this for scheduling the sms in your account.
    date : ddmmyyyy . For 9 feb 2012, it will be 09022012 .It has to be ddmmyyyy only, else sms wont get scheduled.
    time : hhmm (24 hour, military format. 11:30 PM will be 2350)

    Send these 3 extra parameters, and future sms will be scheduled in your way2sms / 160by2 account! :)
    Note : You can schedule SMS only for Non-DND numbers. If the number is in DND you cannot schedule messages for them.