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: 80
https://rot47.net/80
-
80
Last Accessed = 2026-06-17 05:25:37 -
Count = 39 -
Search = 61 -
Created = 2015-10-14 07:10:54 -
ID: W
https://rot47.net/W
-
W
Last Accessed = 2026-06-23 06:46:57 -
Count = 39 -
Search = 96 -
Created = 2013-12-02 05:30:28 -
ID: V
https://rot47.net/V
-
V
Last Accessed = 2026-06-23 03:39:52 -
Count = 39 -
Search = 125 -
Created = 2013-11-15 08:43:44 -
ID: ly
https://rot47.net/ly
-
ly
Last Accessed = 2026-06-20 05:35:38 -
Count = 38 -
Search = 26 -
Created = 2025-04-19 07:19:21 -
ID: d4
https://rot47.net/d4
-
d4
Last Accessed = 2026-06-16 08:44:42 -
Count = 38 -
Search = 46 -
Created = 2019-01-28 07:40:49 -
ID: ao
https://rot47.net/ao
-
ao
Last Accessed = 2026-06-16 07:16:43 -
Count = 38 -
Search = 66 -
Created = 2016-09-11 03:14:00 -
ID: 45
https://rot47.net/45
-
45
Last Accessed = 2026-06-17 07:42:30 -
Count = 38 -
Search = 80 -
Created = 2015-03-08 02:45:14 -
ID: 3P
https://rot47.net/3P
-
3P
Last Accessed = 2026-06-13 06:47:10 -
Count = 38 -
Search = 59 -
Created = 2015-03-06 02:27:05 -
ID: 3l
https://rot47.net/3l
-
3l
Last Accessed = 2026-06-13 01:02:52 -
Count = 38 -
Search = 76 -
Created = 2015-02-07 07:11:10 -
ID: 1U
https://rot47.net/1U
-
1U
Last Accessed = 2026-06-12 06:18:38 -
Count = 38 -
Search = 60 -
Created = 2014-11-18 06:20:32 -
ID: P
https://rot47.net/P
-
P
Last Accessed = 2026-06-21 02:41:35 -
Count = 38 -
Search = 160 -
Created = 2013-09-16 10:18:10 -
ID: O
https://rot47.net/O
-
O
Last Accessed = 2026-06-16 12:16:35 -
Count = 38 -
Search = 158 -
Created = 2013-08-13 11:23:17 -
ID: kV
https://rot47.net/kV
-
kV
Last Accessed = 2026-06-24 04:39:50 -
Count = 37 -
Search = 16 -
Created = 2025-03-16 01:12:02 -
ID: 48
https://rot47.net/48
-
48
Last Accessed = 2026-06-20 07:28:57 -
Count = 37 -
Search = 72 -
Created = 2015-03-08 02:48:04 -
ID: 3S
https://rot47.net/3S
-
3S
Last Accessed = 2026-06-16 03:49:15 -
Count = 37 -
Search = 62 -
Created = 2015-03-06 02:28:55 -
First Page | Previous Page | Total: 1285, Page 21 / 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: