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: 50
https://rot47.net/50
-
50
Last Accessed = 2026-06-12 10:10:12 -
Count = 22 -
Search = 97 -
Created = 2015-04-06 10:46:35 -
ID: 4Q
https://rot47.net/4Q
-
4Q
Last Accessed = 2026-06-13 10:17:48 -
Count = 22 -
Search = 64 -
Created = 2015-04-04 03:14:58 -
ID: 4y
https://rot47.net/4y
-
4y
Last Accessed = 2026-06-13 07:25:47 -
Count = 22 -
Search = 58 -
Created = 2015-03-27 04:58:00 -
ID: 4u
https://rot47.net/4u
-
4u
Last Accessed = 2026-06-11 11:01:06 -
Count = 22 -
Search = 72 -
Created = 2015-03-24 08:35:34 -
ID: 4c
https://rot47.net/4c
-
4c
Last Accessed = 2026-06-13 10:17:49 -
Count = 22 -
Search = 63 -
Created = 2015-03-08 02:50:03 -
ID: 3b
https://rot47.net/3b
-
3b
Last Accessed = 2026-06-16 01:41:37 -
Count = 22 -
Search = 75 -
Created = 2015-02-01 03:01:11 -
ID: 36
https://rot47.net/36
-
36
Last Accessed = 2026-06-13 01:09:04 -
Count = 22 -
Search = 139 -
Created = 2015-01-26 11:10:03 -
ID: 31
https://rot47.net/31
-
31
Last Accessed = 2026-06-13 01:07:56 -
Count = 22 -
Search = 85 -
Created = 2015-01-18 05:54:18 -
ID: 24
https://rot47.net/24
-
24
Last Accessed = 2026-06-13 12:50:24 -
Count = 22 -
Search = 80 -
Created = 2014-12-03 05:33:15 -
ID: 1O
https://rot47.net/1O
-
1O
Last Accessed = 2026-06-12 12:54:57 -
Count = 22 -
Search = 168 -
Created = 2014-11-18 05:47:01 -
ID: 1I
https://rot47.net/1I
-
1I
Last Accessed = 2026-06-12 12:54:40 -
Count = 22 -
Search = 69 -
Created = 2014-10-15 04:46:44 -
ID: 1B
https://rot47.net/1B
-
1B
Last Accessed = 2026-06-11 11:09:37 -
Count = 22 -
Search = 45 -
Created = 2014-09-15 05:45:37 -
ID: lO
https://rot47.net/lO
-
lO
Last Accessed = 2026-06-24 04:35:25 -
Count = 21 -
Search = 33 -
Created = 2025-09-16 03:17:20 -
ID: kB
https://rot47.net/kB
-
kB
Last Accessed = 2026-06-18 07:29:21 -
Count = 21 -
Search = 14 -
Created = 2025-01-13 12:08:24 -
ID: kz
https://rot47.net/kz
-
kz
Last Accessed = 2026-06-12 10:02:59 -
Count = 21 -
Search = 18 -
Created = 2025-01-02 02:05:27 -
First Page | Previous Page | Total: 1285, Page 53 / 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: