1 Link = 1 Coffee, or 1 Domain = 3 Coffees Per Month5>
Start Shorten URLs to replace a long one and you can monitor the referral times of the URL.
Drag or BookMark This Utility Link!
ID: b
https://rot47.net/b
-
b
Last Accessed = 2026-06-09 03:02:30 -
Count = 63081 -
Search = 2057 -
Created = 2012-12-26 01:28:13 -
ID: 74
https://rot47.net/74
-
74
Last Accessed = 2026-06-04 08:05:03 -
Count = 14302 -
Search = 552 -
Created = 2015-10-13 07:25:47 -
ID: 3C
https://rot47.net/3C
-
3C
Last Accessed = 2026-06-07 10:19:23 -
Count = 11217 -
Search = 901 -
Created = 2015-02-21 11:30:49 -
ID: 7o
https://rot47.net/7o
-
7o
Last Accessed = 2026-06-04 12:36:57 -
Count = 8003 -
Search = 592 -
Created = 2015-10-13 10:34:54 -
ID: a1
https://rot47.net/a1
-
a1
Last Accessed = 2026-06-09 06:30:50 -
Count = 7402 -
Search = 1427 -
Created = 2016-05-26 08:42:10 -
ID: 7M
https://rot47.net/7M
-
7M
Last Accessed = 2026-06-03 11:01:36 -
Count = 6953 -
Search = 616 -
Created = 2015-10-14 05:45:09 -
ID: 5H
https://rot47.net/5H
-
5H
Last Accessed = 2026-06-03 11:18:18 -
Count = 6523 -
Search = 677 -
Created = 2015-06-06 10:56:05 -
ID: bv
https://rot47.net/bv
-
bv
Last Accessed = 2026-06-10 08:49:27 -
Count = 3542 -
Search = 801 -
Created = 2017-10-19 06:35:13 -
ID: 6j
https://rot47.net/6j
-
6j
Last Accessed = 2026-06-07 02:39:34 -
Count = 2846 -
Search = 766 -
Created = 2015-09-12 10:48:18 -
ID: 8i
https://rot47.net/8i
-
8i
Last Accessed = 2026-06-07 10:24:42 -
Count = 2796 -
Search = 467 -
Created = 2015-10-15 04:54:29 -
ID: 6i
https://rot47.net/6i
-
6i
Last Accessed = 2026-06-09 02:33:02 -
Count = 2538 -
Search = 659 -
Created = 2015-09-12 10:47:18 -
ID: 9j
https://rot47.net/9j
-
9j
Last Accessed = 2026-06-09 04:30:20 -
Count = 2462 -
Search = 1252 -
Created = 2015-11-25 08:47:22 -
ID: 7u
https://rot47.net/7u
-
7u
Last Accessed = 2026-06-03 11:07:51 -
Count = 2401 -
Search = 410 -
Created = 2015-10-13 11:04:31 -
ID: 7f
https://rot47.net/7f
-
7f
Last Accessed = 2026-06-03 11:10:36 -
Count = 2331 -
Search = 323 -
Created = 2015-10-13 09:16:27 -
ID: 86
https://rot47.net/86
-
86
Last Accessed = 2026-06-07 09:03:58 -
Count = 1994 -
Search = 452 -
Created = 2015-10-14 04:48:48 -
First Page |
Previous Page |
Total: 1285 , Page 1 / 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: