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: 2M
https://rot47.net/2M
-
2M
Last Accessed = 2026-06-12 04:02:36 -
Count = 19 -
Search = 71 -
Created = 2015-01-05 01:40:06 -
ID: 2f
https://rot47.net/2f
-
2f
Last Accessed = 2026-06-11 04:35:52 -
Count = 19 -
Search = 78 -
Created = 2014-12-28 09:08:26 -
ID: 28
https://rot47.net/28
-
28
Last Accessed = 2026-06-21 08:13:43 -
Count = 19 -
Search = 83 -
Created = 2014-12-14 02:14:11 -
ID: 1A
https://rot47.net/1A
-
1A
Last Accessed = 2026-06-11 08:36:29 -
Count = 19 -
Search = 81 -
Created = 2014-08-26 09:45:56 -
ID: m2
https://rot47.net/m2
-
m2
Last Accessed = 2026-06-24 12:17:17 -
Count = 18 -
Search = 31 -
Created = 2025-11-10 09:05:15 -
ID: m0
https://rot47.net/m0
-
m0
Last Accessed = 2026-06-24 12:16:01 -
Count = 18 -
Search = 30 -
Created = 2025-11-04 02:37:42 -
ID: lP
https://rot47.net/lP
-
lP
Last Accessed = 2026-06-24 12:26:46 -
Count = 18 -
Search = 33 -
Created = 2025-09-23 04:18:58 -
ID: ko
https://rot47.net/ko
-
ko
Last Accessed = 2026-06-15 11:26:42 -
Count = 18 -
Search = 23 -
Created = 2024-10-14 11:24:43 -
ID: k0
https://rot47.net/k0
-
k0
Last Accessed = 2026-06-12 09:57:38 -
Count = 18 -
Search = 19 -
Created = 2024-01-13 02:15:29 -
ID: jZ
https://rot47.net/jZ
-
jZ
Last Accessed = 2026-06-12 08:45:15 -
Count = 18 -
Search = 17 -
Created = 2023-12-17 08:54:00 -
ID: jd
https://rot47.net/jd
-
jd
Last Accessed = 2026-06-13 10:01:02 -
Count = 18 -
Search = 37 -
Created = 2022-04-28 03:53:09 -
ID: j0
https://rot47.net/j0
-
j0
Last Accessed = 2026-06-12 01:11:55 -
Count = 18 -
Search = 24 -
Created = 2021-12-16 05:56:40 -
ID: iE
https://rot47.net/iE
-
iE
Last Accessed = 2026-06-16 09:36:31 -
Count = 18 -
Search = 31 -
Created = 2021-08-19 07:12:37 -
ID: hV
https://rot47.net/hV
-
hV
Last Accessed = 2026-06-14 02:09:48 -
Count = 18 -
Search = 45 -
Created = 2020-12-14 08:46:06 -
ID: hw
https://rot47.net/hw
-
hw
Last Accessed = 2026-06-14 07:06:38 -
Count = 18 -
Search = 44 -
Created = 2020-08-30 12:37:19 -
First Page | Previous Page | Total: 1285, Page 72 / 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: