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: 6Q
https://rot47.net/6Q
-
6Q
Last Accessed = 2026-06-12 12:07:38 -
Count = 573 -
Search = 68 -
Created = 2015-10-13 09:29:14 -
ID: 6T
https://rot47.net/6T
-
6T
Last Accessed = 2026-06-13 04:30:33 -
Count = 553 -
Search = 60 -
Created = 2015-10-13 04:31:09 -
ID: 93
https://rot47.net/93
-
93
Last Accessed = 2026-06-22 10:27:23 -
Count = 552 -
Search = 1008 -
Created = 2015-11-07 11:26:07 -
ID: 90
https://rot47.net/90
-
90
Last Accessed = 2026-06-19 01:35:29 -
Count = 541 -
Search = 949 -
Created = 2015-11-02 02:04:51 -
ID: 8G
https://rot47.net/8G
-
8G
Last Accessed = 2026-06-12 06:02:08 -
Count = 531 -
Search = 64 -
Created = 2015-10-15 07:22:59 -
ID: 70
https://rot47.net/70
-
70
Last Accessed = 2026-06-20 06:38:50 -
Count = 515 -
Search = 121 -
Created = 2015-10-13 05:19:40 -
ID: a4
https://rot47.net/a4
-
a4
Last Accessed = 2026-06-19 04:14:21 -
Count = 512 -
Search = 825 -
Created = 2016-06-16 10:37:22 -
ID: 8f
https://rot47.net/8f
-
8f
Last Accessed = 2026-06-13 11:29:53 -
Count = 509 -
Search = 64 -
Created = 2015-10-15 04:27:06 -
ID: 8j
https://rot47.net/8j
-
8j
Last Accessed = 2026-06-21 08:16:53 -
Count = 508 -
Search = 59 -
Created = 2015-10-15 05:03:44 -
ID: 8A
https://rot47.net/8A
-
8A
Last Accessed = 2026-06-13 04:56:58 -
Count = 505 -
Search = 70 -
Created = 2015-10-15 06:53:54 -
ID: 1w
https://rot47.net/1w
-
1w
Last Accessed = 2026-06-20 01:52:22 -
Count = 502 -
Search = 500 -
Created = 2014-08-16 08:42:29 -
ID: bc
https://rot47.net/bc
-
bc
Last Accessed = 2026-06-16 09:56:29 -
Count = 498 -
Search = 57 -
Created = 2017-09-04 08:37:01 -
ID: A
https://rot47.net/A
-
A
Last Accessed = 2026-06-18 03:58:56 -
Count = 498 -
Search = 809 -
Created = 2013-02-24 07:30:57 -
ID: 11
https://rot47.net/11
-
11
Last Accessed = 2026-06-21 10:19:12 -
Count = 471 -
Search = 1132 -
Created = 2014-03-01 04:40:11 -
ID: 8R
https://rot47.net/8R
-
8R
Last Accessed = 2026-06-14 05:47:49 -
Count = 463 -
Search = 63 -
Created = 2015-10-15 04:43:40 -
First Page | Previous Page | Total: 1285, Page 6 / 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: