Skip to main content

Quickstart Guide

This guide will help you create your first smart link with Linquid.

Prerequisites

  • A Linquid account (sign up here)
  • A destination URL you want to shorten
1

Open the Dashboard

Navigate to dashboard.linquid.io and log in
2

Click 'Create Link'

Click the Create Link button in the top right corner
3

Enter Your Destination

Paste your destination URL (e.g., https://example.com/landing-page)
4

Customize (Optional)

  • Add a custom short code (e.g., promo2024)
  • Add a title for easy identification
  • Select a campaign to organize your links
5

Save

Click Create Link to generate your short URL
Your link is now live at https://linqu.id/your-code!

Step 2: Add Smart Routing (Optional)

Make your link intelligent by adding routing rules:
// Example: Route mobile users to app store
{
  "type": "device",
  "conditions": {
    "devices": ["mobile"]
  },
  "destinationUrl": "https://apps.apple.com/app/yourapp"
}

Available Rule Types

TypeDescriptionExample Use Case
geoRoute by country/regionShow localized content
deviceRoute by device typeMobile app vs web
timeRoute by time/dayBusiness hours redirect
referrerRoute by traffic sourceAffiliate tracking
utmRoute by UTM parametersCampaign-specific pages
languageRoute by browser languageLocalization
percentageA/B split testingOptimize conversions

Step 3: Track Conversions

Add our tracking pixel to your destination page:
<!-- Add to your thank-you or conversion page -->
<script src="https://cdn.linquid.io/pixel.js"></script>
<script>
  linquid.track('conversion', {
    value: 99.99,
    currency: 'USD'
  });
</script>
Or use server-to-server postback:
curl -X POST https://api.linquid.io/conversions/s2s \
  -H "Content-Type: application/json" \
  -d '{
    "click_id": "{{click_id}}",
    "event": "purchase",
    "value": 99.99
  }'

Step 4: View Analytics

Go to the Analytics tab to see:
  • Total clicks and unique visitors
  • Geographic distribution
  • Device breakdown
  • Conversion rates and revenue
  • Top performing links

Using the API

Generate an API key from Settings > API Keys:
# Create a link via API
curl -X POST https://api.linquid.io/links \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "destinationUrl": "https://example.com",
    "title": "My Link"
  }'
Response:
{
  "success": true,
  "data": {
    "id": "link_abc123",
    "shortCode": "abc123",
    "shortUrl": "https://linqu.id/abc123",
    "destinationUrl": "https://example.com"
  }
}

Next Steps