Quick Start
Get started with LinkForty Cloud in under 5 minutes. No credit card required.
1. Create Your Account
Visit linkforty.com and sign up for a free account:
# No installation required - cloud-hosted
# Sign up at: https://linkforty.com/signup
You'll receive:
- ✅ Free Tier: Unlimited links, 1,000 clicks/month
- ✅ Full Feature Access: All features available on free tier
- ✅ No Credit Card: Upgrade later when you need more
2. Create Your First Organization
After signing in, you'll be prompted to create your first organization:
- Click "Create Organization"
- Enter your organization name (e.g., "Acme Inc")
- Click "Create"
Organizations allow you to:
- Separate personal and business links
- Invite team members
- Manage multiple projects
- Track separate analytics
3. Create Your First Template
Templates must be created before links. Templates define default settings (like app store URLs, attribution windows, and UTM parameters) that apply to all links created from that template.
Step 1: Navigate to Templates
- Click "Settings" in the sidebar
- Click "Link Templates"
- Click "Create Template" button
Step 2: Configure Your Template
Fill in the template details:
Basic Information:
- Name: "Default Template" or "Instagram Campaigns"
- Description: "Standard template for social media campaigns"
Default Platform URLs:
- iOS URL:
https://apps.apple.com/app/your-app/id123456789 - Android URL:
https://play.google.com/store/apps/details?id=com.yourapp - Web Fallback:
https://example.com(optional)
Default Attribution Window:
- Select 168 hours (7 days) - Industry standard
Default UTM Parameters (optional):
- Medium:
social(all links from this template will have this)
Click "Create Template" and you're ready to create links!
4. Create Your First Link
Step 1: Navigate to Links
- Click "Links" in the sidebar
- Click "Create Link" button
Step 2: Select Your Template
- Template: Select "Default Template" (the template you just created)
The template will automatically fill in default values for app store URLs and attribution window.
Step 3: Configure Your Link
Fill in the required fields:
Basic Information:
- Original URL:
https://example.com/product/123(where you want to send users) - Title: "Product 123 Launch" (internal reference)
- Description: "Q1 2024 product launch campaign"
Platform URLs (optional but recommended):
- iOS URL:
https://apps.apple.com/app/your-app/id123456789 - Android URL:
https://play.google.com/store/apps/details?id=com.yourapp - Web Fallback:
https://example.com/product/123(desktop users)
Attribution Window:
- Select 168 hours (7 days) - Default
- Shorter windows (1-24h) for direct response campaigns
- Longer windows (30-90 days) for brand awareness
UTM Parameters (optional):
- Source:
instagram - Medium:
social - Campaign:
product-launch-q1
Step 4: Generate Link
Click "Create Link" and you'll get:
https://lnk.forty.com/abc123
Your short link is now live and ready to share!
5. Share Your Link
Copy your short link and use it anywhere:
- 📱 Social Media: Instagram, TikTok, Facebook, Twitter
- 📧 Email Campaigns: Mailchimp, SendGrid, etc.
- 📄 Print Materials: Flyers, business cards, posters
- 💬 Messaging Apps: WhatsApp, Telegram, SMS
- 🎥 Video Descriptions: YouTube, Vimeo
How It Works
When someone clicks your link:
- Web Users: Redirected to your Original URL or Web Fallback
- Mobile Users (no app): Sent to App Store/Google Play
- Mobile Users (has app): Deep link directly into your app content
- All Clicks: Tracked in real-time with full analytics
6. Track Your Results
View Analytics
- Click "Analytics" in the sidebar
- Select your link from the list
- See real-time data:
- Total Clicks: How many people clicked
- Installs: How many installed your app
- Geographic Data: Countries and cities
- Device Breakdown: iOS, Android, Web
- Conversion Rate: Clicks → Installs
Export Data
Export your analytics data:
- Click "Export" button
- Choose format: JSON or CSV
- Use data in Excel, Google Sheets, or BI tools
7. Install Mobile SDK (Optional)
To enable deferred deep linking and attribution tracking, install our SDK:
React Native
npm install @linkforty/react-native
import { LinkFortySDK } from '@linkforty/react-native';
// Initialize in App.tsx
LinkFortySDK.initialize({
apiKey: 'your-api-key',
apiUrl: 'https://api.linkforty.com',
});
// Check for deferred deep link on app launch
const deepLinkData = await LinkFortySDK.getDeepLinkData();
if (deepLinkData) {
// User installed from a short link
console.log('Product ID:', deepLinkData.productId);
// Navigate to specific product
}
iOS (Swift)
pod 'LinkFortySDK'
import LinkFortySDK
// Initialize in AppDelegate
LinkFortySDK.initialize(apiKey: "your-api-key")
// Check for deferred deep link
LinkFortySDK.getDeepLinkData { result in
if case .success(let data) = result {
// Navigate to specific content
navigateToProduct(id: data["productId"])
}
}
Android (Kotlin)
implementation 'com.linkforty:sdk:2.0.0'
import com.linkforty.sdk.LinkFortySDK
// Initialize in Application class
LinkFortySDK.initialize(this, "your-api-key")
// Check for deferred deep link in MainActivity
LinkFortySDK.getDeepLinkData { data ->
data?.let {
// Navigate to specific content
navigateToProduct(it["productId"])
}
}
See SDK Integration Guide for complete setup.
8. Generate QR Codes
Create QR codes for offline-to-online attribution:
- Go to your link details page
- Click "Generate QR Code"
- Configure options:
- Size: 256px, 512px, 1024px, 2048px
- Format: PNG or SVG
- Color: Match your brand
- Download and use in:
- Print ads
- Product packaging
- Event signage
- Business cards
9. Set Up Webhooks (Optional)
Get real-time notifications for clicks and installs:
- Click "Settings" → "Webhooks"
- Click "Create Webhook"
- Enter your endpoint URL:
https://yourapp.com/webhooks/linkforty - Select events:
- ✅ link.clicked
- ✅ app.installed
- ✅ deeplink.matched
- Click "Create"
Example webhook payload:
{
"event": "app.installed",
"timestamp": "2024-01-15T10:30:00Z",
"data": {
"linkId": "abc123",
"userId": "user_456",
"platform": "ios",
"country": "US",
"city": "San Francisco",
"utmSource": "instagram",
"utmCampaign": "product-launch-q1"
}
}
Use webhooks to:
- Award referral credits
- Trigger email sequences
- Update CRM records
- Send Slack notifications
Next Steps
Now that you have your first link running, explore advanced features:
- 📋 Link Templates - Create reusable templates
- 🎯 Targeting Rules - Route by location, language, device
- 🔄 Bulk Operations - Create 1000+ links at once
- 📊 Advanced Analytics - Deep dive into metrics
- 👥 Team Collaboration - Invite team members
- 🔑 API Access - Automate link creation
Getting Help
Need assistance?
- 📚 Platform Guides - Step-by-step tutorials
- 🔧 API Reference - Complete API documentation
- 💬 GitHub Discussions - Community support
- 🐛 Report Issues - Bug reports
Pricing
Free Tier:
- Unlimited links
- 1,000 clicks/month
- All features included
Pro Tier ($29/month):
- Unlimited links
- Unlimited clicks
- Priority support
- Custom domains
Self-Hosted (FREE):
- Deploy on your infrastructure
- Unlimited everything
- Full source code access
- See Self-Hosting Guide
You're now ready to create powerful deep links! Start tracking your marketing campaigns with LinkForty.