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: gD
https://rot47.net/gD
-
gD
Last Accessed = 2026-06-15 08:02:21 -
Count = 29 -
Search = 51 -
Created = 2019-11-08 12:55:02 -
ID: fM
https://rot47.net/fM
-
fM
Last Accessed = 2026-06-13 03:32:47 -
Count = 29 -
Search = 99 -
Created = 2019-07-10 05:51:42 -
ID: fu
https://rot47.net/fu
-
fu
Last Accessed = 2026-06-14 07:03:50 -
Count = 29 -
Search = 44 -
Created = 2019-07-05 12:54:02 -
ID: eZ
https://rot47.net/eZ
-
eZ
Last Accessed = 2026-06-12 07:01:47 -
Count = 29 -
Search = 72 -
Created = 2019-05-30 08:17:05 -
ID: aP
https://rot47.net/aP
-
aP
Last Accessed = 2026-06-19 05:40:04 -
Count = 29 -
Search = 63 -
Created = 2017-04-02 02:59:49 -
ID: 9i
https://rot47.net/9i
-
9i
Last Accessed = 2026-06-25 02:15:53 -
Count = 29 -
Search = 147 -
Created = 2015-11-25 08:11:03 -
ID: 6q
https://rot47.net/6q
-
6q
Last Accessed = 2026-06-14 11:15:17 -
Count = 29 -
Search = 45 -
Created = 2015-09-15 12:25:13 -
ID: 63
https://rot47.net/63
-
63
Last Accessed = 2026-06-15 06:57:18 -
Count = 29 -
Search = 65 -
Created = 2015-08-22 09:28:00 -
ID: 58
https://rot47.net/58
-
58
Last Accessed = 2026-06-14 09:44:48 -
Count = 29 -
Search = 60 -
Created = 2015-04-06 11:49:29 -
ID: 1s
https://rot47.net/1s
-
1s
Last Accessed = 2026-06-11 11:01:39 -
Count = 29 -
Search = 105 -
Created = 2014-08-11 10:33:35 -
ID: lJ
https://rot47.net/lJ
-
lJ
Last Accessed = 2026-06-18 09:24:07 -
Count = 28 -
Search = 26 -
Created = 2025-05-10 08:23:10 -
ID: lI
https://rot47.net/lI
-
lI
Last Accessed = 2026-06-18 09:24:06 -
Count = 28 -
Search = 27 -
Created = 2025-05-01 05:09:15 -
ID: lt
https://rot47.net/lt
-
lt
Last Accessed = 2026-06-24 08:06:36 -
Count = 28 -
Search = 15 -
Created = 2025-04-05 07:19:51 -
ID: lr
https://rot47.net/lr
-
lr
Last Accessed = 2026-06-11 08:50:14 -
Count = 28 -
Search = 16 -
Created = 2025-04-01 05:35:33 -
ID: lo
https://rot47.net/lo
-
lo
Last Accessed = 2026-06-18 06:48:24 -
Count = 28 -
Search = 15 -
Created = 2025-03-30 04:16:23 -
First Page | Previous Page | Total: 1285, Page 30 / 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: