Introducing the Slang API
Lately was working on some slang filtering module, but for the LOLz of it made a simple JSON API.
The deal is pretty simple, the API takes in an SMS slang word and expands the acronym.
So, here is a simple jQuery code to get results :
$.getJSON(“http://h3manth.com/slang.php?str=OMG&callback=?“,
function(str){
console.log(str.result);
});
Do try the API and let me know if there are any additions to be done ☺
#javascript#linux