Skip to content
Tolinku
Tolinku
Sign In Start Free
Marketing · · 5 min read

Link Retargeting: Add Pixels to Every Shared Link

By Tolinku Staff
|
Tolinku qr codes short links dashboard screenshot for marketing blog posts

Link retargeting adds tracking pixels to the redirect page of a short link. When someone clicks the link, the pixel fires before they reach the destination. This adds the user to a retargeting audience on platforms like Facebook, Google, LinkedIn, or TikTok, even if the destination page is not yours (a news article, a partner site, a third-party review).

For short link fundamentals, see QR codes and short links for mobile apps. For attribution tracking, see re-engagement attribution for mobile apps.

Tolinku dashboard showing route configuration for deep links Tolinku route configuration with QR code generation for each deep link.

The Flow

  1. You create a short link with a retargeting pixel attached.
  2. A user clicks the short link.
  3. The redirect service loads a lightweight page that fires the pixel.
  4. The user is added to a retargeting audience on the ad platform.
  5. The user is redirected to the destination URL.
  6. You can now show ads to users who clicked the link.

The Technical Implementation

The redirect service serves a page with the tracking pixel before redirecting:

<!-- Intermediate page (served for ~1 second before redirect) -->
<html>
<head>
  <!-- Meta refresh as fallback -->
  <meta http-equiv="refresh" content="1;url=https://destination.com/page">
</head>
<body>
  <!-- Facebook Pixel -->
  <script>
    !function(f,b,e,v,n,t,s){...}(window, document,'script',
    'https://connect.facebook.net/en_US/fbevents.js');
    fbq('init', 'YOUR_PIXEL_ID');
    fbq('track', 'PageView');
  </script>

  <!-- Google Ads Remarketing -->
  <script async src="https://www.googletagmanager.com/gtag/js?id=AW-YOUR_ID"></script>
  <script>
    window.dataLayer = window.dataLayer || [];
    function gtag(){dataLayer.push(arguments);}
    gtag('js', new Date());
    gtag('config', 'AW-YOUR_ID');
  </script>

  <!-- Redirect after pixels fire -->
  <script>
    setTimeout(function() {
      window.location.href = 'https://destination.com/page';
    }, 500);
  </script>
</body>
</html>

Most link retargeting services handle this automatically. You just paste your pixel ID.

Use Cases

Content Curation

You share third-party content (industry news, reviews, partner articles) with your audience. With link retargeting, every reader who clicks your curated links gets added to your retargeting audience, even though the destination is someone else's site.

Example: A fintech company shares a Bloomberg article about interest rates. Users who click are added to the company's Facebook Custom Audience. The company can later show ads to these financially engaged users.

When influencers or press mention your product with a link, use a retargeted short link instead of a direct URL. Every reader who clicks through the influencer's content enters your retargeting funnel.

Retarget users who click links to partner or affiliate products. Even if they do not convert on the partner's site, you can show them ads for your own related products.

QR Code Campaigns

QR codes on physical materials (flyers, posters, packaging) use short links. Add retargeting pixels to those short links to build audiences from offline interactions.

Building Retargeting Audiences

Facebook / Meta Custom Audiences

  1. Create a Custom Audience based on website traffic.
  2. Define the audience as "people who visited pages containing [your short link redirect domain]."
  3. Use this audience for lookalike audiences or direct retargeting.
  1. Create a remarketing list in Google Ads.
  2. The Google Ads tag fires on the redirect page, adding users to the list.
  3. Target these users in display, search, or YouTube campaigns.

LinkedIn Insight Tag

  1. Install the LinkedIn Insight Tag on the redirect page.
  2. Build matched audiences for sponsored content campaigns.
  3. Especially useful for B2B link retargeting.

TikTok Pixel

  1. Add the TikTok Pixel to the redirect page.
  2. Build custom audiences from link clickers.
  3. Target with in-feed ads.

Different links indicate different interests. Create separate retargeting audiences per link or link category:

Link Category Audience Retargeting Ad
Product links Product-interested users Product showcase ads
Pricing page links High-intent users Free trial or discount ads
Blog content links Awareness-stage users Educational content ads
Case study links Evaluation-stage users Social proof ads
Partner review links Research-stage users Comparison ads

This segmentation ensures users see relevant ads based on the content they engaged with.

Privacy Considerations

In jurisdictions with cookie consent requirements (GDPR in the EU, CCPA in California), retargeting pixels require user consent before firing.

Options:

  • Show a consent banner on the redirect page before firing pixels.
  • Only fire pixels for users in jurisdictions that do not require consent.
  • Use contextual targeting instead of pixel-based retargeting.

Transparency

Be transparent about tracking. Include a privacy notice on your redirect pages and in your privacy policy.

First-Party Data

Link retargeting builds first-party audiences (you own the data on the ad platform). This is more resilient than third-party cookies, which browsers are deprecating.

Measuring Impact

Audience Growth

Track how quickly your retargeting audiences grow from link clicks:

Week Links Shared Clicks New Audience Members
1 10 2,400 1,800
2 12 3,100 2,200
3 8 1,900 1,400

Not all clickers are added (ad blockers, cookie consent refusals), so expect 60-80% capture rates.

Retargeting Campaign Performance

Compare retargeting campaigns fueled by link retargeting against other audience sources:

Audience Source Audience Size CTR CPA
Link retargeting 15,000 2.8% $12
Website visitors 50,000 1.9% $18
Lookalike audiences 500,000 0.6% $25

Link retargeting audiences are often smaller but higher quality, since the users actively engaged with your content.

Best Practices

  1. Minimal redirect delay: Keep the pixel-firing page under 500ms. Users should barely notice the intermediate step.
  2. Fallback redirect: Use <meta http-equiv="refresh"> as a fallback for users with JavaScript disabled.
  3. Multiple pixels: You can fire pixels for multiple platforms on the same redirect page.
  4. Test pixel firing: Use browser developer tools (Network tab) to verify pixels fire before the redirect.
  5. Frequency caps: Set frequency caps on retargeting ads to avoid annoying users.
  6. Audience refresh: Set audience durations appropriately (7-30 days for most campaigns).

Tolinku routes support analytics tracking for every click. While Tolinku does not currently embed third-party pixels on redirect pages, the click data feeds into webhooks that can trigger pixel events server-side. This provides the audience-building benefit without client-side pixel delays.

For QR code analytics, see QR code analytics: tracking scans and conversions. For the complete short link guide, see QR codes and short links for mobile apps.

Get deep linking tips in your inbox

One email per week. No spam.

Ready to add deep linking to your app?

Set up Universal Links, App Links, deferred deep linking, and analytics in minutes. Free to start.