Integrations and Advanced Connections
Connect Lickity Click with third-party services to automate workflows and enhance tracking across platforms.
Overview
Lickity Click integrates seamlessly with popular services to supercharge your link tracking. Set up custom domains, configure smart redirects, connect to YouTube, and enable conversion tracking for platforms like Meta, Google, and TikTok. These features help you automate workflows and gain deeper insights into your audience.
Review your plan limits before enabling advanced integrations. Creator+ and Pro plans unlock unlimited custom domains and server-side events.
Custom Domains via DNS
Point your own domain to Lickity Click using a simple DNS record. This takes about 60 seconds and gives you fully branded short links like yourdomain.com/go.
Log in to DNS Provider
Access your domain registrar or DNS provider dashboard (e.g., Cloudflare, Namecheap).
Add CNAME Record
Create a CNAME record:
Name: go (or your subdomain)
Target: links.lickity.click
TTL: Auto
Verify in Dashboard
Go to your Lickity Click dashboard > Domains > Add Domain. Enter go.yourdomain.com and verify.
Supported Providers
Cloudflare, GoDaddy, Namecheap, Route 53.
Propagation Time
Usually instant, up to 5 minutes max.
Smart Redirects
Route traffic intelligently without code. Use rules for A/B testing, device targeting, or geo-routing.
A/B Testing Setup
// Example rule configuration via API
const rules = {
path: "/test",
rules: [
{ weight: 50, destination: "https://site-a.com" },
{ weight: 50, destination: "https://site-b.com" }
]
};
Redirect mobile users to app stores and desktop to web.
{
"conditions": [
{ "type": "device", "value": "mobile", "destination": "https://appstore.com" },
{ "type": "device", "value": "desktop", "destination": "https://web.com" }
]
}
Send US traffic to one page, EU to another.
{
"conditions": [
{ "country": "US", "destination": "https://us-site.com" },
{ "country": "EU", "destination": "https://eu-site.com" }
]
}
YouTube Integration
Auto-import video links from your channel for instant shortening and tracking.
Connect YouTube
In dashboard > Integrations > YouTube > Connect Account.
Select Channel
Choose your channel and grant read access.
Auto-Shorten New Videos
Enable auto-import. New uploads get shortened links like yourdomain.com/watch?v=ID.
Conversion Tracking
Prove ROI with server-side events for ad platforms. Track purchases, signups, and more.
Your Meta Pixel ID.
Enable in dashboard > Tracking > Meta. Fires on conversion page loads.
GA4 Measurement ID (G-XXXXXXXXXX).
Supports enhanced e-commerce events.
TikTok Pixel ID.
Tracks CompletePayment and ViewContent events.
Test integrations in sandbox mode first. View events in real-time dashboard.
Next Steps
Explore Quickstart for basics or Authentication for API access.
Last updated today