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: aS
https://rot47.net/aS
-
aS
Last Accessed = 2026-06-19 03:50:42 -
Count = 400 -
Search = 791 -
Created = 2017-06-01 04:09:26 -
ID: 7G
https://rot47.net/7G
-
7G
Last Accessed = 2026-06-19 03:40:29 -
Count = 399 -
Search = 61 -
Created = 2015-10-14 05:06:31 -
ID: 7S
https://rot47.net/7S
-
7S
Last Accessed = 2026-06-12 01:13:42 -
Count = 396 -
Search = 65 -
Created = 2015-10-14 06:30:15 -
ID: 8e
https://rot47.net/8e
-
8e
Last Accessed = 2026-06-12 01:10:29 -
Count = 394 -
Search = 68 -
Created = 2015-10-15 04:25:22 -
ID: 7Y
https://rot47.net/7Y
-
7Y
Last Accessed = 2026-06-12 01:10:29 -
Count = 389 -
Search = 85 -
Created = 2015-10-14 07:04:36 -
ID: 6K
https://rot47.net/6K
-
6K
Last Accessed = 2026-06-19 03:17:23 -
Count = 380 -
Search = 756 -
Created = 2015-09-25 02:17:42 -
ID: ip
https://rot47.net/ip
-
ip
Last Accessed = 2026-06-22 09:51:21 -
Count = 379 -
Search = 152 -
Created = 2021-03-06 11:07:42 -
ID: 72
https://rot47.net/72
-
72
Last Accessed = 2026-06-21 07:18:43 -
Count = 379 -
Search = 66 -
Created = 2015-10-13 07:04:39 -
ID: 1C
https://rot47.net/1C
-
1C
Last Accessed = 2026-06-22 11:25:32 -
Count = 379 -
Search = 985 -
Created = 2014-09-20 02:07:17 -
ID: aR
https://rot47.net/aR
-
aR
Last Accessed = 2026-06-19 12:39:55 -
Count = 364 -
Search = 750 -
Created = 2017-06-01 04:08:52 -
ID: 8B
https://rot47.net/8B
-
8B
Last Accessed = 2026-06-12 01:15:07 -
Count = 364 -
Search = 40 -
Created = 2015-10-15 06:55:33 -
ID: 17
https://rot47.net/17
-
17
Last Accessed = 2026-06-21 12:23:07 -
Count = 362 -
Search = 969 -
Created = 2014-03-01 04:51:13 -
ID: 73
https://rot47.net/73
-
73
Last Accessed = 2026-06-18 11:09:07 -
Count = 360 -
Search = 67 -
Created = 2015-10-13 07:09:33 -
ID: aq
https://rot47.net/aq
-
aq
Last Accessed = 2026-06-20 09:55:52 -
Count = 358 -
Search = 773 -
Created = 2016-09-17 07:31:54 -
ID: 85
https://rot47.net/85
-
85
Last Accessed = 2026-06-20 08:04:07 -
Count = 354 -
Search = 65 -
Created = 2015-10-14 07:30:21 -
First Page | Previous Page | Total: 1285, Page 8 / 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: