<html>
    <head>
<title>Affiliate Network Link Search - WOW TRK</title>
<meta name="description" content="Found an affiliate link but not sure which affiliate network or program it is from? WOW TRK Link Search is a free tool to find the network.">
  <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="/images/favicon.png">


<script type="text/javascript">
    var _iub = _iub || [];
    _iub.csConfiguration = {"askConsentAtCookiePolicyUpdate":true,"countryDetection":true,"enableFadp":true,"enableLgpd":true,"enableUspr":true,"lang":"en","perPurposeConsent":true,"siteId":2096076,"cookiePolicyId":38744920, "banner":{ "acceptButtonCaptionColor":"white","acceptButtonColor":"#5acb52","acceptButtonDisplay":true,"backgroundColor":"#ffffff","closeButtonDisplay":false,"customizeButtonCaptionColor":"white","customizeButtonColor":"#909190","customizeButtonDisplay":true,"position":"float-bottom-right","textColor":"#3f3d44","content":"<div id=\"iubenda-cs-title\">This website uses cookies</div><div id=\"iubenda-cs-paragraph\">We and selected partners use cookies or similar technologies as specified in the <a href=\"/privacy-policy/38744920/cookie-policy?an=no&s_ck=false&newmarkup=yes\" class=\"iubenda-cs-cookie-policy-lnk\">cookie policy</a>.</div>" }};
    </script>
    <script type="text/javascript" src="//cdn.iubenda.com/cs/gpp/stub.js"></script>
    <script type="text/javascript" src="//cdn.iubenda.com/cs/iubenda_cs.js" charset="UTF-8" async></script>

<!-- Google Tag Manager -->
<script>
    // Initialize the data layer for Google Tag Manager (this should mandatorily be done before the Cookie Solution is loaded)
    window.dataLayer = window.dataLayer || [];
    function gtag() {
        dataLayer.push(arguments);
    }
    // Default consent mode is "denied" for both ads and analytics, but delay for 2 seconds until the Cookie Solution is loaded
    gtag("consent", "default", {
        ad_storage: "denied",
        analytics_storage: "denied",
        wait_for_update: 2000 // milliseconds
    });
    // Improve ad click measurement quality (optional)
    gtag('set', 'url_passthrough', true);
    // Further redact your ads data (optional)
    gtag("set", "ads_data_redaction", true);
    
    // Google Tag Manager
    (function(w, d, s, l, i) {
        w[l] = w[l] || [];
        w[l].push({
            'gtm.start': new Date().getTime(),
            event: 'gtm.js'
        });
        var f = d.getElementsByTagName(s)[0],
            j = d.createElement(s),
            dl = l != 'dataLayer' ? '&l=' + l : '';
        j.async = true;
        j.src =
            'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
        f.parentNode.insertBefore(j, f);
    })(window, document, 'script', 'dataLayer', 'GTM-WBNQD3J3'); //replace GTM-XXXXXX with the ID of your Google Analytics property
</script>

</head>


<body>

    <!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WBNQD3J3"
    height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
    <!-- End Google Tag Manager (noscript) -->

    <div class="header flex-grid">


        <div class="col">
            
<a href="https://wowtrk.com"><img src="https://cdn.wowtrk.com/wp-content/uploads/2020/05/WOWTRK-logo-white.svg" alt="Logo"/></a>
</div>

<div class="col toolText">
    <h1>Link Search</h1>    

</div>

</div>
    <br><br>
<h2 class="headingText">Search an Affiliate Link to Find the Network</h1>
<div class="descriptionText">Enter an affiliate link and quickly find out which affiliate network or program the tracking link is from.</div>
<br><br>
<div class="form-group" id="linkSearch">
    <input type="text" id="urlInput" placeholder="Enter URL" onkeypress="handleKeyPress(event)" autofocus><input type="submit" class="searchButton" value="Search for Network" onclick="checkDomain()">
</div>

<p id="resultMessage"></p>

<br><br>
<div class="offerEngineAdBoxContainer">
<div class="offerEngineAdBox">
    <div class="offerEngineAd">
                    <p class="line1">Fun Fact: We know more tracking domains than Nicolas Cage has IMDB credits.</p>
                    <p class="line2">There are currently 599 tracking domains in our database.</p>
                </div></div>
</div>

    <div class="spaceBoxes">
<p class="advertisementsText">Advertisements</p>
<div class="grid">
<div class="col ad1">
    <a href="https://wowtrk.com/buy-ad-link-search/" class="ad-block ad-placeholder">Advertise Here</a></div>
<div class="col ad2">
<a href="https://wowtrk.com/buy-ad-link-search/" class="ad-block ad-placeholder">Advertise Here</a></div>
    </div></div>

<script>
function checkDomain() {
    // Get the input value
    var urlInput = document.getElementById("urlInput").value;

            // Validate if the domain field is not empty
            if (urlInput.trim() === "") {
                alert("Please enter a URL.");
                return;
            }

    // Show loading message
    document.getElementById("resultMessage").innerHTML = "<br><p class='loading'><img src='https://www.wowtrk.com/wp-content/uploads/2023/11/Loading-Icon.gif' alt='Loading Icon'></p>";

    // Simulate a 2-second delay
    setTimeout(function() {
        // Perform AJAX request to check the domain on the server
        var xhr = new XMLHttpRequest();
        xhr.open("POST", "check_domain.php", true);
        xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
        xhr.onreadystatechange = function() {
            if (xhr.readyState == 4 && xhr.status == 200) {
                // Get the result message element
                var resultMessage = document.getElementById("resultMessage");

                // Set the innerHTML directly with the response
                resultMessage.innerHTML = xhr.responseText;
            }
        };

        xhr.send("urlInput=" + encodeURIComponent(urlInput));
    }, 700); // 700 milliseconds delay
}
  
    // Handle Enter key press
    function handleKeyPress(event) {
              if (event.key === "Enter") {
                  event.preventDefault(); // Prevent form submission (if inside a form)
                  checkDomain(); // Trigger the checkDomain function
              }
          }

   // Check if URL parameter exists
   window.onload = function() {
        var urlParams = new URLSearchParams(window.location.search);
        var linkParam = urlParams.get('link');
        if (linkParam) {
            // Set the URL input value
            document.getElementById("urlInput").value = linkParam;
            // Automatically trigger the search
            checkDomain();
        }
    }


      </script>
  

<script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'934c23c79b60d622',t:'MTc0NTM5ODUwMy4wMDAwMDA='};var a=document.createElement('script');a.nonce='';a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>

<footer>
<div class="footer">
    <a href="https://social.wowmedia.net/@wowtrk" target="_blank" rel="noopener"><img src="https://cdn.wowtrk.com/wp-content/uploads/2024/03/Mastodon.png" alt="Follow WOW TRK on Mastodon" width="40" height="40"></a> <a href="https://x.com/wowtrk" target="_blank" rel="noopener"><img src="https://cdn.wowtrk.com/wp-content/uploads/2023/10/x-icon.png" class="x-icon" alt="Follow WOW TRK on X" width="40" height="40"></a> <a href=https://www.linkedin.com/company/wowtrk" target="_blank" rel="noopener"><img src="https://cdn.wowtrk.com/wp-content/uploads/2020/07/linkedin.svg" alt="Follow WOW TRK on LinkedIn" width="40" height="40"></a> <a href="https://t.me/wowtrkcom" target="_blank" rel="noopener"><img src="https://cdn.wowtrk.com/wp-content/uploads/2021/01/telegram-icon.svg" alt="Follow WOW TRK on Telegram" width="40" height="40"></a>  
    <hr class="footerHR">
    <div class="footerLinks">
<a href="https://www.wowtrk.com/advertise-with-us/">Advertise with us</a> | <a href="https://www.wowtrk.com/link-search-api/">API Access</a> | <a href="https://www.wowtrk.com/terms/">Terms & Conditions</a> | <a href="https://www.wowtrk.com/privacy-policy/">Privacy & Cookies Policy</a> | <a href="https://www.wowtrk.com/contact-us/">Contact Us</a>
    </div>
    <div class="footerCopyright">
Copyright © 2007-2025 - WOW Media UK Ltd.

<p class="attributionText" style="font-size:12px">Some network logos are provided thanks to <a href="https://cufinder.io" target="_blank" class="cufinder" rel="noopener noreferrer">Cufinder</a>.</p>
</div>
</div>
</footer>

</html>