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: 3y
https://rot47.net/3y
-
3y
Last Accessed = 2026-06-13 01:06:18 -
Count = 34 -
Search = 86 -
Created = 2015-02-11 12:02:55 -
ID: 3n
https://rot47.net/3n
-
3n
Last Accessed = 2026-06-13 01:03:56 -
Count = 34 -
Search = 73 -
Created = 2015-02-09 12:50:17 -
ID: 3a
https://rot47.net/3a
-
3a
Last Accessed = 2026-06-12 09:58:51 -
Count = 34 -
Search = 72 -
Created = 2015-01-30 12:13:37 -
ID: lH
https://rot47.net/lH
-
lH
Last Accessed = 2026-06-18 09:24:05 -
Count = 33 -
Search = 25 -
Created = 2025-04-30 06:03:24 -
ID: lq
https://rot47.net/lq
-
lq
Last Accessed = 2026-06-11 11:02:48 -
Count = 33 -
Search = 16 -
Created = 2025-03-31 06:49:38 -
ID: kW
https://rot47.net/kW
-
kW
Last Accessed = 2026-06-24 04:53:57 -
Count = 33 -
Search = 16 -
Created = 2025-03-17 12:23:48 -
ID: kR
https://rot47.net/kR
-
kR
Last Accessed = 2026-06-15 01:05:41 -
Count = 33 -
Search = 17 -
Created = 2025-03-11 04:12:28 -
ID: kN
https://rot47.net/kN
-
kN
Last Accessed = 2026-06-24 10:28:57 -
Count = 33 -
Search = 17 -
Created = 2025-03-08 01:13:39 -
ID: kn
https://rot47.net/kn
-
kn
Last Accessed = 2026-06-19 04:35:21 -
Count = 33 -
Search = 14 -
Created = 2024-10-14 05:49:09 -
ID: kc
https://rot47.net/kc
-
kc
Last Accessed = 2026-06-24 11:35:45 -
Count = 33 -
Search = 17 -
Created = 2024-09-15 11:11:29 -
ID: jl
https://rot47.net/jl
-
jl
Last Accessed = 2026-06-12 07:02:54 -
Count = 33 -
Search = 27 -
Created = 2022-07-16 09:44:19 -
ID: gy
https://rot47.net/gy
-
gy
Last Accessed = 2026-06-15 01:16:38 -
Count = 33 -
Search = 74 -
Created = 2019-10-21 01:26:40 -
ID: gj
https://rot47.net/gj
-
gj
Last Accessed = 2026-06-15 09:08:55 -
Count = 33 -
Search = 47 -
Created = 2019-10-01 05:05:09 -
ID: en
https://rot47.net/en
-
en
Last Accessed = 2026-06-13 10:07:20 -
Count = 33 -
Search = 106 -
Created = 2019-05-29 09:56:35 -
ID: bP
https://rot47.net/bP
-
bP
Last Accessed = 2026-06-24 07:43:48 -
Count = 33 -
Search = 97 -
Created = 2018-01-02 01:09:30 -
First Page | Previous Page | Total: 1285, Page 24 / 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: