Our API
Due to how easy it is to use our API there's really not much to say. plz link me was created to make life easier so we decided to make our API just as easy.
All you have to do is go to, http://plzlink.me/c-api.php?link=http://www.google.com - and we will return a plzlink.me url that forwards to the url defined in link. If there are any errors a 404 status code will be sent and "error" will be returned.
Code Example
Turning a big url into a small url doesn't get much easier than that!
Due to how easy it is to use our API there's really not much to say. plz link me was created to make life easier so we decided to make our API just as easy.
All you have to do is go to, http://plzlink.me/c-api.php?link=http://www.google.com - and we will return a plzlink.me url that forwards to the url defined in link. If there are any errors a 404 status code will be sent and "error" will be returned.
Code Example
PHP
<?php
function plzLinkME($link) {
return file_get_contents("http://plzlink.me/c-api.php?link=$link");
}
// will return: http://plzlink.me/17
echo plzLinkME("http://www.google.com");
?>
Turning a big url into a small url doesn't get much easier than that!
