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: ec
https://rot47.net/ec
-
ec
Last Accessed = 2026-06-11 11:05:03 -
Count = 17 -
Search = 81 -
Created = 2019-05-29 05:25:11 -
ID: dQ
https://rot47.net/dQ
-
dQ
Last Accessed = 2026-06-18 10:35:29 -
Count = 17 -
Search = 65 -
Created = 2019-05-29 02:29:23 -
ID: dI
https://rot47.net/dI
-
dI
Last Accessed = 2026-06-14 04:33:01 -
Count = 17 -
Search = 46 -
Created = 2019-05-29 12:52:24 -
ID: dD
https://rot47.net/dD
-
dD
Last Accessed = 2026-06-14 04:33:01 -
Count = 17 -
Search = 76 -
Created = 2019-05-28 11:57:51 -
ID: dC
https://rot47.net/dC
-
dC
Last Accessed = 2026-06-14 04:34:06 -
Count = 17 -
Search = 87 -
Created = 2019-05-28 11:35:11 -
ID: dz
https://rot47.net/dz
-
dz
Last Accessed = 2026-06-19 05:18:05 -
Count = 17 -
Search = 85 -
Created = 2019-05-28 11:22:11 -
ID: dy
https://rot47.net/dy
-
dy
Last Accessed = 2026-06-19 05:19:05 -
Count = 17 -
Search = 83 -
Created = 2019-05-28 11:16:06 -
ID: dj
https://rot47.net/dj
-
dj
Last Accessed = 2026-06-11 05:44:01 -
Count = 17 -
Search = 95 -
Created = 2019-04-05 11:01:17 -
ID: dc
https://rot47.net/dc
-
dc
Last Accessed = 2026-06-11 05:45:07 -
Count = 17 -
Search = 117 -
Created = 2019-02-21 01:38:37 -
ID: cS
https://rot47.net/cS
-
cS
Last Accessed = 2026-06-11 08:35:19 -
Count = 17 -
Search = 93 -
Created = 2018-12-02 07:33:02 -
ID: cw
https://rot47.net/cw
-
cw
Last Accessed = 2026-06-06 01:55:35 -
Count = 17 -
Search = 68 -
Created = 2018-06-29 05:07:39 -
ID: cq
https://rot47.net/cq
-
cq
Last Accessed = 2026-05-09 07:13:42 -
Count = 17 -
Search = 65 -
Created = 2018-05-26 03:25:25 -
ID: cb
https://rot47.net/cb
-
cb
Last Accessed = 2026-06-19 03:59:43 -
Count = 17 -
Search = 67 -
Created = 2018-03-12 02:39:52 -
ID: c7
https://rot47.net/c7
-
c7
Last Accessed = 2026-06-16 07:23:51 -
Count = 17 -
Search = 50 -
Created = 2018-02-14 02:06:36 -
ID: c2
https://rot47.net/c2
-
c2
Last Accessed = 2026-06-19 01:11:15 -
Count = 17 -
Search = 71 -
Created = 2018-01-23 11:53:57 -
First Page | Previous Page | Total: 1285, Page 82 / 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: