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: bG
https://rot47.net/bG
-
bG
Last Accessed = 2026-06-12 06:58:19 -
Count = 17 -
Search = 102 -
Created = 2017-11-23 07:40:37 -
ID: bD
https://rot47.net/bD
-
bD
Last Accessed = 2026-06-13 03:36:57 -
Count = 17 -
Search = 99 -
Created = 2017-11-15 08:32:16 -
ID: bz
https://rot47.net/bz
-
bz
Last Accessed = 2026-06-07 12:00:33 -
Count = 17 -
Search = 74 -
Created = 2017-10-24 07:11:57 -
ID: bq
https://rot47.net/bq
-
bq
Last Accessed = 2026-06-14 12:56:19 -
Count = 17 -
Search = 42 -
Created = 2017-10-01 02:50:50 -
ID: aW
https://rot47.net/aW
-
aW
Last Accessed = 2026-05-09 10:03:42 -
Count = 17 -
Search = 65 -
Created = 2017-06-21 09:57:14 -
ID: aJ
https://rot47.net/aJ
-
aJ
Last Accessed = 2026-06-18 12:12:32 -
Count = 17 -
Search = 65 -
Created = 2017-02-23 01:47:06 -
ID: aG
https://rot47.net/aG
-
aG
Last Accessed = 2026-06-16 12:18:36 -
Count = 17 -
Search = 74 -
Created = 2017-01-23 05:42:50 -
ID: az
https://rot47.net/az
-
az
Last Accessed = 2026-06-16 12:09:33 -
Count = 17 -
Search = 101 -
Created = 2016-11-14 09:36:02 -
ID: at
https://rot47.net/at
-
at
Last Accessed = 2026-06-22 09:12:38 -
Count = 17 -
Search = 89 -
Created = 2016-09-26 12:51:27 -
ID: ah
https://rot47.net/ah
-
ah
Last Accessed = 2026-06-12 10:04:11 -
Count = 17 -
Search = 124 -
Created = 2016-07-12 05:48:12 -
ID: a3
https://rot47.net/a3
-
a3
Last Accessed = 2026-06-13 03:35:07 -
Count = 17 -
Search = 98 -
Created = 2016-06-10 04:24:26 -
ID: 9Z
https://rot47.net/9Z
-
9Z
Last Accessed = 2026-06-14 12:56:19 -
Count = 17 -
Search = 41 -
Created = 2016-05-21 11:10:29 -
ID: 9H
https://rot47.net/9H
-
9H
Last Accessed = 2026-06-14 12:19:53 -
Count = 17 -
Search = 41 -
Created = 2016-03-06 07:48:09 -
ID: 9l
https://rot47.net/9l
-
9l
Last Accessed = 2026-06-11 11:43:55 -
Count = 17 -
Search = 43 -
Created = 2015-11-28 12:22:16 -
ID: 92
https://rot47.net/92
-
92
Last Accessed = 2026-06-20 06:46:12 -
Count = 17 -
Search = 72 -
Created = 2015-11-04 02:18:43 -
First Page | Previous Page | Total: 1285, Page 83 / 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: