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: fK
https://rot47.net/fK
-
fK
Last Accessed = 2026-06-16 07:20:11 -
Count = 17 -
Search = 88 -
Created = 2019-07-10 09:56:23 -
ID: fB
https://rot47.net/fB
-
fB
Last Accessed = 2026-06-16 07:23:51 -
Count = 17 -
Search = 70 -
Created = 2019-07-06 09:34:24 -
ID: fo
https://rot47.net/fo
-
fo
Last Accessed = 2026-06-11 11:01:07 -
Count = 17 -
Search = 50 -
Created = 2019-06-14 03:34:00 -
ID: fm
https://rot47.net/fm
-
fm
Last Accessed = 2026-06-11 11:09:17 -
Count = 17 -
Search = 39 -
Created = 2019-06-11 04:27:30 -
ID: eW
https://rot47.net/eW
-
eW
Last Accessed = 2026-06-11 11:10:26 -
Count = 17 -
Search = 54 -
Created = 2019-05-30 07:21:01 -
ID: eQ
https://rot47.net/eQ
-
eQ
Last Accessed = 2026-06-11 11:00:19 -
Count = 17 -
Search = 64 -
Created = 2019-05-30 02:42:55 -
ID: eO
https://rot47.net/eO
-
eO
Last Accessed = 2026-06-16 01:40:35 -
Count = 17 -
Search = 64 -
Created = 2019-05-30 01:59:10 -
ID: eK
https://rot47.net/eK
-
eK
Last Accessed = 2026-06-11 11:08:57 -
Count = 17 -
Search = 58 -
Created = 2019-05-30 12:12:01 -
ID: eI
https://rot47.net/eI
-
eI
Last Accessed = 2026-06-11 11:03:17 -
Count = 17 -
Search = 48 -
Created = 2019-05-30 10:12:23 -
ID: eH
https://rot47.net/eH
-
eH
Last Accessed = 2026-06-11 11:02:49 -
Count = 17 -
Search = 67 -
Created = 2019-05-30 09:09:46 -
ID: eE
https://rot47.net/eE
-
eE
Last Accessed = 2026-06-11 11:05:03 -
Count = 17 -
Search = 108 -
Created = 2019-05-30 08:29:42 -
ID: et
https://rot47.net/et
-
et
Last Accessed = 2026-06-11 11:05:15 -
Count = 17 -
Search = 69 -
Created = 2019-05-30 04:04:08 -
ID: eq
https://rot47.net/eq
-
eq
Last Accessed = 2026-06-11 11:09:18 -
Count = 17 -
Search = 76 -
Created = 2019-05-30 01:33:17 -
ID: eo
https://rot47.net/eo
-
eo
Last Accessed = 2026-06-11 11:01:07 -
Count = 17 -
Search = 62 -
Created = 2019-05-29 10:17:17 -
ID: eg
https://rot47.net/eg
-
eg
Last Accessed = 2026-06-11 11:05:15 -
Count = 17 -
Search = 60 -
Created = 2019-05-29 07:03:50 -
First Page | Previous Page | Total: 1285, Page 81 / 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: