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: dU
https://rot47.net/dU
-
dU
Last Accessed = 2026-06-13 04:46:08 -
Count = 19 -
Search = 73 -
Created = 2019-05-29 10:24:59 -
ID: dT
https://rot47.net/dT
-
dT
Last Accessed = 2026-06-18 10:38:30 -
Count = 19 -
Search = 83 -
Created = 2019-05-29 09:05:16 -
ID: dR
https://rot47.net/dR
-
dR
Last Accessed = 2026-06-18 10:41:48 -
Count = 19 -
Search = 57 -
Created = 2019-05-29 07:20:19 -
ID: dK
https://rot47.net/dK
-
dK
Last Accessed = 2026-06-18 04:56:52 -
Count = 19 -
Search = 69 -
Created = 2019-05-29 12:57:29 -
ID: dG
https://rot47.net/dG
-
dG
Last Accessed = 2026-06-13 03:36:56 -
Count = 19 -
Search = 65 -
Created = 2019-05-29 12:31:39 -
ID: dB
https://rot47.net/dB
-
dB
Last Accessed = 2026-06-11 02:13:12 -
Count = 19 -
Search = 71 -
Created = 2019-05-28 11:31:49 -
ID: do
https://rot47.net/do
-
do
Last Accessed = 2026-06-15 09:26:26 -
Count = 19 -
Search = 80 -
Created = 2019-05-05 01:07:12 -
ID: di
https://rot47.net/di
-
di
Last Accessed = 2026-06-13 10:08:44 -
Count = 19 -
Search = 69 -
Created = 2019-04-04 04:52:06 -
ID: dg
https://rot47.net/dg
-
dg
Last Accessed = 2026-06-24 08:48:46 -
Count = 19 -
Search = 82 -
Created = 2019-03-29 05:50:59 -
ID: dd
https://rot47.net/dd
-
dd
Last Accessed = 2026-06-19 11:31:40 -
Count = 19 -
Search = 79 -
Created = 2019-03-06 02:19:16 -
ID: d6
https://rot47.net/d6
-
d6
Last Accessed = 2026-06-24 08:26:39 -
Count = 19 -
Search = 52 -
Created = 2019-02-05 05:32:23 -
ID: cV
https://rot47.net/cV
-
cV
Last Accessed = 2026-06-19 05:39:13 -
Count = 19 -
Search = 81 -
Created = 2018-12-13 02:50:33 -
ID: cQ
https://rot47.net/cQ
-
cQ
Last Accessed = 2026-06-13 03:36:05 -
Count = 19 -
Search = 90 -
Created = 2018-11-21 04:33:51 -
ID: cM
https://rot47.net/cM
-
cM
Last Accessed = 2026-06-24 07:02:02 -
Count = 19 -
Search = 53 -
Created = 2018-10-13 12:43:33 -
ID: cK
https://rot47.net/cK
-
cK
Last Accessed = 2026-06-13 07:37:38 -
Count = 19 -
Search = 40 -
Created = 2018-09-27 09:17:06 -
First Page | Previous Page | Total: 1285, Page 68 / 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: