Grow up Fast
We provide several tools to help you shorten your links in an easier way.
Personal code
../MA==Copy
Please visit our Knowledge Base & FAQs to discover more details about traffic monetization options and our advertising solutions.

Pastelink.net
Premium Partner
We have created a connection with the Pastelink.net website.
PasteLink.net is the most famous website where you can store any text online for easy sharing. The website is mainly used by programmers to store pieces of sources code or configuration information, but anyone is more than welcome to paste any type of text. The idea behind the site is to make it more convenient for people to share large amounts of text online.
Just go to Pastelink.net and click “Start Now”. Before creating your Paste, activate the function “Monetize This Paste” and follow all instructions, in this way you will connect AdShrink with PasteLink.
2022-01-01

Mirrored.to
Premium Partner
We have created a connection with the Mirrored.to website.
Mirrored.to is a really famous file mirroring web application service launched in 2008. It is the easiest and most convenient way to create multiple mirrors of your files by hosting it on various top file hosting sites. Its ease and simplicity made it one of the top file mirroring services on the internet.
You are able to upload files on this web application and connect your AdShrink account by clicking on Tools > Exit-URL Monetization.
2022-01-01
Recommendations Widget
Powered by our advanced predictive engine, Networkloop's recommendations are tailored to each user based on their interests and context at the moment of discovery. These units typically perform at double or triple the CTR of non-personalized recommendations in the same placements. Publishers can use the Networkloop widget to promote both organic and sponsored content to their readers, alternately driving goals around engagement and monetization.
<head>
...
<script fetchpriority="high" type="text/javascript" src="https://networkloop.xyz/.reccomendation?res=s&sel=networkloop_reccomendation&bucket=sstool_0"></script>
...
</head>
</body>
...
<div id="networkloop_reccomendation"></div>
...
</body>
Click here to see the widget
Mass Shrinker
Once placed on your website, the Website Script will transform your website links into AdShrink.it ones. This relieves you of the work required to update each link that you wish to monetise. Copy the code and paste it into the body section of your HTML code and you are set.
In the row "window.adshobject" at "except" insert all the domains you want to exclude. Remember to change "yoursite.com" with the domain of your website to exclude all internal pages of your site from the conversion
<script>
window.adshobject = {mass: true, except:["shrink-service.it", "adshrink.it", "adshnk.com", "facebook.com", "yoursite.com"], options:{type:false}};
(function(i,s,o,g,r,a,m){i['AdshrinkAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;a.setAttribute('user','MA=='); a.id=r;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://adshrink.it/adshytics.js?c=' + (Math.random() * 9999),'adshytics');
</script>
Easy Shrinker
The Easy Link Tool lets you create a paying link on the go without the need of logging into your AdShrink.it account.
//personalCode: MA==
https://adshnk.com/MA==/{url}
//example
https://adshnk.com/MA==/https://google.com/
Developers API v3
For developers adshrink.it prepared API which returns responses in JSON formats.
Secret Key
6 monthsN/A
Public Key
6 months305f4e2f41
POST Request
adshnk.comAll you have to do is to send a GET request with your API token and URL like the following..
POST - public function create(): return(json
)https://www.shrink-service.it/v3/public/api/auth/key/{public_key}/json/multi
Response
adshnk.comAll you have to do is to send a POST request with your API token and URL like the following..
send(params: urls:['https://example.com', 'https://public.example2.com', ...n = 30]
)
return(json
){"success":true,"urls":Array,"api_limits":1,"error":Array,"exec":0.01}
{"success":false}
Limits and Quota
60/m
Limits and Quotas on API Requests
60 queries per minute (QPM) per IP address.
//jQuery or Axios
$.post("https://www.shrink-service.it/v3/public/api/auth/key/{public_key}/json/multi", {urls:[]} ).then((response) => {
if ( response.success ) {
let shorturl = response.url
/**
* YOUR
* CODE
* BELOW
*/
}
})
/**
* example
*/
$.post("https://www.shrink-service.it/v3/public/api/auth/key/305f4e2f41/json/multi", {urls:["https:///example.com"]} )