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: 3E
https://rot47.net/3E
-
3E
Last Accessed = 2026-06-24 10:01:40 -
Count = 37 -
Search = 89 -
Created = 2015-02-24 12:05:27 -
ID: 3d
https://rot47.net/3d
-
3d
Last Accessed = 2026-06-12 10:06:00 -
Count = 37 -
Search = 110 -
Created = 2015-02-02 05:38:07 -
ID: 1Q
https://rot47.net/1Q
-
1Q
Last Accessed = 2026-06-22 08:11:19 -
Count = 37 -
Search = 48 -
Created = 2014-11-18 05:48:47 -
ID: T
https://rot47.net/T
-
T
Last Accessed = 2026-06-16 12:06:40 -
Count = 37 -
Search = 158 -
Created = 2013-10-21 11:50:32 -
ID: lD
https://rot47.net/lD
-
lD
Last Accessed = 2026-06-24 12:25:52 -
Count = 36 -
Search = 22 -
Created = 2025-04-25 01:30:35 -
ID: ll
https://rot47.net/ll
-
ll
Last Accessed = 2026-06-25 02:39:31 -
Count = 36 -
Search = 15 -
Created = 2025-03-24 04:12:45 -
ID: gd
https://rot47.net/gd
-
gd
Last Accessed = 2026-06-14 06:16:44 -
Count = 36 -
Search = 57 -
Created = 2019-09-14 09:58:38 -
ID: 9V
https://rot47.net/9V
-
9V
Last Accessed = 2026-06-13 07:28:02 -
Count = 36 -
Search = 96 -
Created = 2016-04-14 06:13:25 -
ID: 6G
https://rot47.net/6G
-
6G
Last Accessed = 2026-06-24 12:42:36 -
Count = 36 -
Search = 112 -
Created = 2015-09-22 11:18:57 -
ID: 5h
https://rot47.net/5h
-
5h
Last Accessed = 2026-06-14 07:07:25 -
Count = 36 -
Search = 56 -
Created = 2015-04-09 08:27:26 -
ID: 1h
https://rot47.net/1h
-
1h
Last Accessed = 2026-06-15 09:23:01 -
Count = 36 -
Search = 66 -
Created = 2014-04-16 10:46:19 -
ID: lF
https://rot47.net/lF
-
lF
Last Accessed = 2026-06-18 09:24:04 -
Count = 35 -
Search = 26 -
Created = 2025-04-27 02:01:52 -
ID: lE
https://rot47.net/lE
-
lE
Last Accessed = 2026-06-20 05:30:35 -
Count = 35 -
Search = 26 -
Created = 2025-04-27 06:27:45 -
ID: jy
https://rot47.net/jy
-
jy
Last Accessed = 2026-06-12 07:04:24 -
Count = 35 -
Search = 27 -
Created = 2022-12-21 06:56:32 -
ID: gv
https://rot47.net/gv
-
gv
Last Accessed = 2026-06-15 09:06:56 -
Count = 35 -
Search = 87 -
Created = 2019-10-17 05:10:30 -
First Page | Previous Page | Total: 1285, Page 22 / 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: