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: 1i
https://rot47.net/1i
-
1i
Last Accessed = 2026-06-26 01:58:09 -
Count = 30 -
Search = 85 -
Created = 2014-04-30 10:33:47 -
ID: lK
https://rot47.net/lK
-
lK
Last Accessed = 2026-06-18 09:24:07 -
Count = 29 -
Search = 25 -
Created = 2025-05-11 04:42:34 -
ID: lA
https://rot47.net/lA
-
lA
Last Accessed = 2026-06-19 12:34:35 -
Count = 29 -
Search = 24 -
Created = 2025-04-23 10:17:03 -
ID: lu
https://rot47.net/lu
-
lu
Last Accessed = 2026-06-16 04:39:55 -
Count = 29 -
Search = 16 -
Created = 2025-04-06 10:00:21 -
ID: lm
https://rot47.net/lm
-
lm
Last Accessed = 2026-06-15 08:35:27 -
Count = 29 -
Search = 15 -
Created = 2025-03-29 12:12:00 -
ID: li
https://rot47.net/li
-
li
Last Accessed = 2026-06-11 08:48:40 -
Count = 29 -
Search = 19 -
Created = 2025-03-23 06:12:22 -
ID: l9
https://rot47.net/l9
-
l9
Last Accessed = 2026-06-24 04:49:12 -
Count = 29 -
Search = 15 -
Created = 2025-03-21 04:04:53 -
ID: l7
https://rot47.net/l7
-
l7
Last Accessed = 2026-06-25 05:05:35 -
Count = 29 -
Search = 16 -
Created = 2025-03-20 04:22:16 -
ID: l5
https://rot47.net/l5
-
l5
Last Accessed = 2026-06-24 04:31:34 -
Count = 29 -
Search = 16 -
Created = 2025-03-19 11:06:36 -
ID: kS
https://rot47.net/kS
-
kS
Last Accessed = 2026-06-24 10:46:12 -
Count = 29 -
Search = 15 -
Created = 2025-03-14 08:58:23 -
ID: kF
https://rot47.net/kF
-
kF
Last Accessed = 2026-06-18 06:35:36 -
Count = 29 -
Search = 14 -
Created = 2025-02-16 12:31:20 -
ID: ke
https://rot47.net/ke
-
ke
Last Accessed = 2026-06-11 11:00:54 -
Count = 29 -
Search = 15 -
Created = 2024-09-20 04:05:49 -
ID: k2
https://rot47.net/k2
-
k2
Last Accessed = 2026-06-20 08:35:31 -
Count = 29 -
Search = 16 -
Created = 2024-03-09 11:18:00 -
ID: iU
https://rot47.net/iU
-
iU
Last Accessed = 2026-06-13 12:45:31 -
Count = 29 -
Search = 52 -
Created = 2021-11-22 02:37:28 -
ID: il
https://rot47.net/il
-
il
Last Accessed = 2026-06-13 01:02:54 -
Count = 29 -
Search = 30 -
Created = 2021-03-03 07:55:52 -
First Page | Previous Page | Total: 1285, Page 29 / 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: