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: 4E
https://rot47.net/4E
-
4E
Last Accessed = 2026-06-13 06:46:12 -
Count = 112 -
Search = 82 -
Created = 2015-04-01 02:14:38 -
ID: 1Z
https://rot47.net/1Z
-
1Z
Last Accessed = 2026-06-12 06:16:19 -
Count = 110 -
Search = 72 -
Created = 2014-11-24 05:24:08 -
ID: w
https://rot47.net/w
-
w
Last Accessed = 2026-06-18 03:27:32 -
Count = 110 -
Search = 293 -
Created = 2013-02-12 06:46:01 -
ID: ge
https://rot47.net/ge
-
ge
Last Accessed = 2026-06-17 02:05:08 -
Count = 109 -
Search = 59 -
Created = 2019-09-15 05:02:40 -
ID: 3I
https://rot47.net/3I
-
3I
Last Accessed = 2026-06-13 03:51:48 -
Count = 103 -
Search = 59 -
Created = 2015-02-28 08:04:38 -
ID: iZ
https://rot47.net/iZ
-
iZ
Last Accessed = 2026-06-14 09:38:00 -
Count = 102 -
Search = 70 -
Created = 2021-11-27 07:36:03 -
ID: aZ
https://rot47.net/aZ
-
aZ
Last Accessed = 2026-06-24 12:22:59 -
Count = 101 -
Search = 102 -
Created = 2017-07-06 06:54:11 -
ID: G
https://rot47.net/G
-
G
Last Accessed = 2026-06-20 07:32:13 -
Count = 101 -
Search = 192 -
Created = 2013-03-26 03:25:25 -
ID: 3H
https://rot47.net/3H
-
3H
Last Accessed = 2026-06-13 03:48:56 -
Count = 100 -
Search = 59 -
Created = 2015-02-28 08:03:04 -
ID: g8
https://rot47.net/g8
-
g8
Last Accessed = 2026-06-13 01:02:51 -
Count = 98 -
Search = 30 -
Created = 2019-09-04 02:18:04 -
ID: e2
https://rot47.net/e2
-
e2
Last Accessed = 2026-06-13 10:05:36 -
Count = 95 -
Search = 50 -
Created = 2019-05-29 02:47:08 -
ID: u
https://rot47.net/u
-
u
Last Accessed = 2026-06-20 08:36:06 -
Count = 94 -
Search = 264 -
Created = 2013-01-25 04:04:03 -
ID: iX
https://rot47.net/iX
-
iX
Last Accessed = 2026-06-18 05:08:53 -
Count = 93 -
Search = 120 -
Created = 2021-11-27 07:23:35 -
ID: 5L
https://rot47.net/5L
-
5L
Last Accessed = 2026-06-13 10:14:39 -
Count = 93 -
Search = 78 -
Created = 2015-06-28 09:51:58 -
ID: K
https://rot47.net/K
-
K
Last Accessed = 2026-06-24 12:01:46 -
Count = 87 -
Search = 202 -
Created = 2013-04-26 03:15:41 -
First Page | Previous Page | Total: 1285, Page 15 / 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: