Recut Tools
Recut’s FREE URL Shortener tools: bookmarklets, quick shorteners, scripts, and API. Create branded links, QR codes, and bio pages effortlessly. Boost your marketing with powerful link tracking and analytics.
- Free forever
Quick Shortener
This tool allows you to quickly shorten any URL in any page without using any fancy method. This is perhaps the quickest and the easiest method available for you to shorten URLs across all platforms. This method will generate a unique short URL for you that you will be able to access anytime from your dashboard.
Use your quick URL below to shorten any URL by adding the URL after /q/?u=
. For security reasons, you need to be logged in and using the remember me feature. Check out the examples below to understand how to use this method.
https://app.recut.in/q/?u=URL_OF_SITE
Examples
https://app.recut.in/q/?u=https://www.google.com
https://app.recut.in/q/?u=http://www.apple.com
Please note that this method does not return anything. It simply redirects the user to the redirection page. However, if you need the actual short URL, you can always get it from your dashboard.
Bookmarklet
You can use our bookmarklet tool to instantaneously shorten any site you are currently viewing and if you are logged in on our site, it will be automatically saved to your account for future access. Simply drag the following link to your bookmarks bar or copy the link and manually add it to your favorites.
If you can't drag the link above, use your browser's bookmark editor to create a new bookmark and add the URL below as the link.
javascript:void((function(){var e=document.createElement('script');e.setAttribute('data-url','https://app.recut.in');e.setAttribute('data-token','Your_Token_Here');e.setAttribute('id','gem_bookmarklet');e.setAttribute('type','text/javascript');e.setAttribute('src','https://app.recut.in/static/bookmarklet.js?v=1723271146');document.body.appendChild(e)})());
Please note that for secured sites that use SSL, the widget will not pop up due to security issues. In that case, the user will be redirected to our site where you will be able to view your short URL.
You can find your personal token at https://app.recut.in/user/tools.
Full-Page Script
This script allows you to shorten all (or select) URLs on your website very easily. All you need to do is to copy and paste the code below at the end of your page. You can customize the selector as you wish to target URLs in a specific selector. Note you can just copy the code below because everything is already set for you.
<script type="text/javascript">
var key = "Your_key_Here";
</script>
<script type="text/javascript" src="https://app.recut.in/script.js"></script>
Choosing a different domain
By default, the script uses the default domain on the platform. However, you can define a custom domain name to shorten links with. You need to make sure the domain is exactly the same as the domain added in the account, including the schema (http/https
).
<script type="text/javascript">
var key = "Your_key_Here";
var domain = "https://mydomain.com";
</script>
<script type="text/javascript" src="https://app.recut.in/script.js"></script>
Choosing custom selectors
By default, this script shortens all URLs on a page. If you want to target specific URLs, you can add a selector parameter. You can see an example below where the script will only shorten URLs having a class named mylink
or all direct links in the .content
container or all links in the .comments
container.
<script type="text/javascript">
var key = "Your_key_Here";
var selector = ".mylink, .content > a, .comments a";
</script>
<script type="text/javascript" src="https://app.recut.in/script.js"></script>
Excluding domain names
You can exclude domain names if you wish. You can add an exclude parameter to exclude domain names. The example below shortens all URLs but excludes URLs from google.com
or apple.com
.
<script type="text/javascript">
var key = "Your_key_Here";
var exclude = ["google.com", "apple.com"];
</script>
<script type="text/javascript" src="https://app.recut.in/script.js"></script>
Restricting domain names
You can restrict domain names by adding an include parameter to restrict domain names. The example below shortens all URLs within the include domain name.
<script type="text/javascript">
var key = "Your_key_Here";
var include = ["google.com"];
</script>
<script type="text/javascript" src="https://app.recut.in/script.js"></script>
You can find your personal key at https://app.recut.in/user/tools.