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: 2W
https://rot47.net/2W
-
2W
Last Accessed = 2026-06-12 06:59:10 -
Count = 232 -
Search = 99 -
Created = 2015-01-10 09:22:49 -
ID: aw
https://rot47.net/aw
-
aw
Last Accessed = 2026-06-19 12:39:56 -
Count = 231 -
Search = 750 -
Created = 2016-09-30 01:52:18 -
ID: 2V
https://rot47.net/2V
-
2V
Last Accessed = 2026-06-12 06:59:59 -
Count = 220 -
Search = 92 -
Created = 2015-01-10 09:10:41 -
ID: 7R
https://rot47.net/7R
-
7R
Last Accessed = 2026-06-13 01:00:36 -
Count = 214 -
Search = 64 -
Created = 2015-10-14 06:29:08 -
ID: 7C
https://rot47.net/7C
-
7C
Last Accessed = 2026-06-13 01:07:00 -
Count = 212 -
Search = 68 -
Created = 2015-10-14 04:49:05 -
ID: 7z
https://rot47.net/7z
-
7z
Last Accessed = 2026-06-16 03:29:32 -
Count = 212 -
Search = 41 -
Created = 2015-10-14 04:40:54 -
ID: 8N
https://rot47.net/8N
-
8N
Last Accessed = 2026-06-13 01:59:15 -
Count = 210 -
Search = 48 -
Created = 2015-10-15 04:30:19 -
ID: 56
https://rot47.net/56
-
56
Last Accessed = 2026-06-14 12:36:36 -
Count = 205 -
Search = 82 -
Created = 2015-04-06 11:48:17 -
ID: N
https://rot47.net/N
-
N
Last Accessed = 2026-06-20 07:28:02 -
Count = 205 -
Search = 199 -
Created = 2013-08-13 11:22:52 -
ID: 1m
https://rot47.net/1m
-
1m
Last Accessed = 2026-06-23 01:17:22 -
Count = 204 -
Search = 83 -
Created = 2014-07-20 12:24:55 -
ID: 7V
https://rot47.net/7V
-
7V
Last Accessed = 2026-06-13 12:57:53 -
Count = 201 -
Search = 69 -
Created = 2015-10-14 06:47:02 -
ID: 6W
https://rot47.net/6W
-
6W
Last Accessed = 2026-06-13 01:06:18 -
Count = 198 -
Search = 43 -
Created = 2015-10-13 05:06:52 -
ID: 4L
https://rot47.net/4L
-
4L
Last Accessed = 2026-06-13 12:59:01 -
Count = 195 -
Search = 99 -
Created = 2015-04-02 05:08:45 -
ID: v
https://rot47.net/v
-
v
Last Accessed = 2026-06-19 03:39:29 -
Count = 189 -
Search = 293 -
Created = 2013-02-09 01:57:47 -
ID: 7P
https://rot47.net/7P
-
7P
Last Accessed = 2026-06-13 01:07:28 -
Count = 183 -
Search = 59 -
Created = 2015-10-14 06:12:08 -
First Page | Previous Page | Total: 1285, Page 12 / 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: