Fast Free URL Forwarder, Make URL Shorter
with APIs Support
Buying me a cup of coffee = 1 Link Redirection Ads Free Forever! (Example Premium Shortened Link)
Send me a note on which links/domains to shorten after you buy me a cup of coffee :)
1 Link = 1 Coffee, or 1 Domain = 3 Coffees Per Month5>
to replace a long one and you can monitor the referral times of the URL.
Drag or BookMark This Utility Link!
ID: 1d
https://rot47.net/1d
-
1d
Last Accessed = 2026-06-21 05:43:01 -
Count = 349 -
Search = 814 -
Created = 2014-03-15 05:57:32 -
ID: 7i
https://rot47.net/7i
-
7i
Last Accessed = 2026-06-11 12:10:25 -
Count = 348 -
Search = 60 -
Created = 2015-10-13 10:19:55 -
ID: 18
https://rot47.net/18
-
18
Last Accessed = 2026-06-20 06:25:11 -
Count = 347 -
Search = 1097 -
Created = 2014-03-01 04:52:40 -
ID: ak
https://rot47.net/ak
-
ak
Last Accessed = 2026-06-19 12:41:14 -
Count = 344 -
Search = 840 -
Created = 2016-07-14 02:04:38 -
ID: 89
https://rot47.net/89
-
89
Last Accessed = 2026-06-21 10:48:04 -
Count = 343 -
Search = 65 -
Created = 2015-10-14 05:01:03 -
ID: y
https://rot47.net/y
-
y
Last Accessed = 2026-06-17 10:13:08 -
Count = 341 -
Search = 827 -
Created = 2013-02-18 01:00:34 -
ID: ap
https://rot47.net/ap
-
ap
Last Accessed = 2026-06-20 10:03:26 -
Count = 340 -
Search = 785 -
Created = 2016-09-17 07:31:01 -
ID: 9n
https://rot47.net/9n
-
9n
Last Accessed = 2026-06-20 06:11:09 -
Count = 339 -
Search = 461 -
Created = 2015-12-05 01:06:37 -
ID: 7E
https://rot47.net/7E
-
7E
Last Accessed = 2026-06-18 08:01:58 -
Count = 337 -
Search = 67 -
Created = 2015-10-14 04:56:44 -
ID: 8o
https://rot47.net/8o
-
8o
Last Accessed = 2026-06-12 04:05:51 -
Count = 334 -
Search = 39 -
Created = 2015-10-15 05:41:57 -
ID: 5X
https://rot47.net/5X
-
5X
Last Accessed = 2026-06-22 08:29:37 -
Count = 333 -
Search = 626 -
Created = 2015-07-31 08:34:11 -
ID: 6V
https://rot47.net/6V
-
6V
Last Accessed = 2026-06-12 04:01:46 -
Count = 330 -
Search = 54 -
Created = 2015-10-13 04:58:33 -
ID: 1e
https://rot47.net/1e
-
1e
Last Accessed = 2026-06-22 01:20:21 -
Count = 328 -
Search = 900 -
Created = 2014-03-15 05:58:04 -
ID: 3w
https://rot47.net/3w
-
3w
Last Accessed = 2026-06-12 04:03:06 -
Count = 318 -
Search = 330 -
Created = 2015-02-11 11:30:17 -
ID: 3x
https://rot47.net/3x
-
3x
Last Accessed = 2026-06-20 11:44:37 -
Count = 315 -
Search = 296 -
Created = 2015-02-11 11:31:03 -
First Page | Previous Page | Total: 1285, Page 9 / 86 | Next Page | Last Page
Sorted By: Referal - Creation - Accessed - Search Counter
Application Programming Interfaces
The following API is subject to fair use policy and 1 call per second rate limit.API Address
https://rot47.net/api/url/
Parameters - url (GET or POST)
Required: specified the URL to lookup or shorten. When URL is already shortened, it will return e.g.
{"error":"found","errorCode":3,"data":{"id":"595","0":"595","count":"0","1":"0","flag":"7","2":"7","created":"1455395435","3":"1455395435","last":"1455395435","4":"1455395435","search":"0","5":"0"},"url":"https:\/\/rot47.net\/9B"}
Parameter - try (GET or POST)
Optional - Default = False: Do not attempt to shorten the URL. Just to check if the URL has been shortened before.Parameter - private (GET or POST)
Optioal - Default = False: Do not list the link in the Links Browser.Return - errorCode and error
"error" => "invalid url",
"errorCode" => 4
"error" => "found",
"errorCode" => 3,
"error" => "added",
"errorCode" => 0,
"error" => "success",
"errorCode" => 0,
"error" => "$url should start with http or https",
"errorCode" => 1
"error" => "not found",
"errorCode" => 2
Return - other parameters
flag: bit 8 - premium URL does not show ads anyway, anytime, forever! flag: bit 4 - shortened by API flag: bit 2 - public flag: bit 1 - permanent redirect (otherwise temporarily) count: clicked by vistors search: touched by search bots created: created timestamp last: last visited timestamp id: id in decimal
PHP Library
We provide a PHP class that calls the API: https://github.com/DoctorLai/URL-Shortener. Sample Usages:
$obj = new URL();
$response = $obj->shorten("https://example.com", array("try" => 1));
var_dump($response);
$response = $obj->shorten("https://example.com", array("private" => 1));
var_dump($response);
echo $response->url;
Premium Domains
URLs of premium domains are redirected without ads. This is to promote better, decent URLs. If you want your domain in the list, please buy me a cup of coffee, thanks!
function IsPremiumDomain($url) {
$theurl = strtolower($url);
$good_domains = array(
"helloacm.com",
"justyy.com",
"steakovercooked.com",
"google.com",
"google.co.uk",
"codingforspeed.com",
"happyukgo.com",
"bbc.co.uk",
"tumblr.com",
"instagram.com",
"youtube.com",
"ask.fm",
"dropbox.com",
"linkedin.com",
"rot47.net",
"isvbscriptdead.com",
"busy.org",
"steemit.com",
"uploadbeta.com",
"zhihua-lai.com"
);
$parse = parse_url($theurl);
$domain = $parse['host'];
return in_array($domain, $good_domains);
}
Page Edited: