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: B
https://rot47.net/B
-
B
Last Accessed = 2026-06-24 12:09:21 -
Count = 45 -
Search = 154 -
Created = 2013-03-08 04:35:43 -
ID: fn
https://rot47.net/fn
-
fn
Last Accessed = 2026-06-21 10:55:11 -
Count = 44 -
Search = 108 -
Created = 2019-06-14 11:29:49 -
ID: L
https://rot47.net/L
-
L
Last Accessed = 2026-06-24 12:07:39 -
Count = 44 -
Search = 195 -
Created = 2013-07-10 01:52:39 -
ID: 8L
https://rot47.net/8L
-
8L
Last Accessed = 2026-06-13 01:05:19 -
Count = 43 -
Search = 29 -
Created = 2015-10-15 04:23:55 -
ID: 8w
https://rot47.net/8w
-
8w
Last Accessed = 2026-06-14 07:03:52 -
Count = 43 -
Search = 45 -
Created = 2015-10-15 06:37:28 -
ID: 2c
https://rot47.net/2c
-
2c
Last Accessed = 2026-06-11 11:07:12 -
Count = 43 -
Search = 94 -
Created = 2014-12-22 02:28:27 -
ID: S
https://rot47.net/S
-
S
Last Accessed = 2026-06-24 12:12:58 -
Count = 43 -
Search = 131 -
Created = 2013-10-11 07:04:43 -
ID: J
https://rot47.net/J
-
J
Last Accessed = 2026-06-24 12:03:32 -
Count = 43 -
Search = 142 -
Created = 2013-04-26 02:32:30 -
ID: db
https://rot47.net/db
-
db
Last Accessed = 2026-06-18 06:37:10 -
Count = 42 -
Search = 112 -
Created = 2019-02-12 01:01:06 -
ID: 8P
https://rot47.net/8P
-
8P
Last Accessed = 2026-06-13 03:48:56 -
Count = 42 -
Search = 38 -
Created = 2015-10-15 04:35:44 -
ID: 4t
https://rot47.net/4t
-
4t
Last Accessed = 2026-06-16 09:28:49 -
Count = 42 -
Search = 48 -
Created = 2015-03-24 04:56:36 -
ID: 9C
https://rot47.net/9C
-
9C
Last Accessed = 2026-06-25 03:18:07 -
Count = 41 -
Search = 98 -
Created = 2016-02-13 10:17:46 -
ID: 8U
https://rot47.net/8U
-
8U
Last Accessed = 2026-06-16 02:51:02 -
Count = 41 -
Search = 52 -
Created = 2015-10-15 10:35:39 -
ID: 5Y
https://rot47.net/5Y
-
5Y
Last Accessed = 2026-06-14 12:26:52 -
Count = 41 -
Search = 74 -
Created = 2015-08-08 06:10:30 -
ID: 1a
https://rot47.net/1a
-
1a
Last Accessed = 2026-06-24 06:36:41 -
Count = 41 -
Search = 107 -
Created = 2014-03-10 08:40:38 -
First Page | Previous Page | Total: 1285, Page 20 / 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: