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: fO
https://rot47.net/fO
-
fO
Last Accessed = 2026-06-19 11:27:32 -
Count = 31 -
Search = 131 -
Created = 2019-07-12 03:40:19 -
ID: f5
https://rot47.net/f5
-
f5
Last Accessed = 2026-06-12 07:03:34 -
Count = 31 -
Search = 113 -
Created = 2019-05-30 09:55:36 -
ID: 5D
https://rot47.net/5D
-
5D
Last Accessed = 2026-06-14 12:26:52 -
Count = 31 -
Search = 70 -
Created = 2015-05-28 10:50:06 -
ID: 4F
https://rot47.net/4F
-
4F
Last Accessed = 2026-06-13 07:22:58 -
Count = 31 -
Search = 51 -
Created = 2015-04-01 02:16:50 -
ID: 39
https://rot47.net/39
-
39
Last Accessed = 2026-06-11 02:23:00 -
Count = 31 -
Search = 107 -
Created = 2015-01-28 02:01:01 -
ID: 38
https://rot47.net/38
-
38
Last Accessed = 2026-06-14 10:18:56 -
Count = 31 -
Search = 110 -
Created = 2015-01-27 08:55:41 -
ID: 2E
https://rot47.net/2E
-
2E
Last Accessed = 2026-06-12 07:05:09 -
Count = 31 -
Search = 51 -
Created = 2015-01-02 09:16:07 -
ID: ls
https://rot47.net/ls
-
ls
Last Accessed = 2026-06-16 01:04:03 -
Count = 30 -
Search = 15 -
Created = 2025-04-04 04:35:30 -
ID: lk
https://rot47.net/lk
-
lk
Last Accessed = 2026-06-20 12:13:20 -
Count = 30 -
Search = 17 -
Created = 2025-03-23 11:42:44 -
ID: l3
https://rot47.net/l3
-
l3
Last Accessed = 2026-06-24 12:24:03 -
Count = 30 -
Search = 16 -
Created = 2025-03-19 02:32:08 -
ID: l2
https://rot47.net/l2
-
l2
Last Accessed = 2026-06-16 12:59:40 -
Count = 30 -
Search = 15 -
Created = 2025-03-19 02:15:28 -
ID: kQ
https://rot47.net/kQ
-
kQ
Last Accessed = 2026-06-24 11:40:09 -
Count = 30 -
Search = 17 -
Created = 2025-03-10 02:15:14 -
ID: kO
https://rot47.net/kO
-
kO
Last Accessed = 2026-06-18 09:23:53 -
Count = 30 -
Search = 16 -
Created = 2025-03-08 05:31:06 -
ID: kG
https://rot47.net/kG
-
kG
Last Accessed = 2026-06-18 09:23:53 -
Count = 30 -
Search = 15 -
Created = 2025-02-22 11:10:25 -
ID: jx
https://rot47.net/jx
-
jx
Last Accessed = 2026-06-13 01:02:53 -
Count = 30 -
Search = 39 -
Created = 2022-11-28 06:53:26 -
First Page | Previous Page | Total: 1285, Page 27 / 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: