Everything you need to master link management and grow your business.
Step-by-step tutorials to help you succeed
Learn the basics of creating and managing short links in under 5 minutes.
Deep dive into click tracking, geographic data, and conversion metrics.
Brand your short links with your own domain for professional appearance.
Split traffic between destinations to optimize conversion rates.
Organize your workspace and manage permissions for your team.
Understand how Linkly protects your data and link security features.
Learn by watching our expert walkthroughs
Build powerful integrations with our RESTful API. Create links, retrieve analytics, and manage your workspace programmatically.
Learn how to authenticate requests using API keys.
POST /api/links - Create short links programmatically.
GET /api/links/{id}/analytics - Fetch click data.
Create and manage multiple links in a single request.
# Create a short link
curl -X POST https://api.linkly.app/v1/links \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{
"destination_url": "https://example.com/long-page",
"title": "My Campaign Link",
"utm_source": "twitter",
"utm_medium": "social"
}'
# Response
{
"id": "lnk_abc123",
"short_url": "https://lnk.ly/abc123",
"destination_url": "https://example.com/long-page",
"created_at": "2024-01-15T10:30:00Z"
}