Short link
Buat link rapi yang mudah dibagikan dengan tracking opsional, aturan kedaluwarsa, password, Smart Redirects, dan statistik publik.
Dokumentasi workspace
Pelajari bagaimana opsi workspace Lynko, akses API developer, webhooks, dan analytics saling terhubung agar kamu bisa membuat link, kode QR, dan alur campaign dengan percaya diri.
Ikhtisar ruang kerja
Workspace Lynko menyimpan link publik, kode QR, halaman, campaign, dan laporan di satu tempat. Tiap tool bisa berjalan sendiri, tetapi workflow terkuat menggabungkannya.
Buat link rapi yang mudah dibagikan dengan tracking opsional, aturan kedaluwarsa, password, Smart Redirects, dan statistik publik.
Buat kode QR yang tetap memakai kode cetak yang sama meski destinasi diubah nanti.
Publikasikan halaman link-in-bio untuk profil sosial, campaign, event, dan destinasi penting.
Gabungkan short link, kode QR, landing page, poll, blok Reward Unlock, dan laporan dalam satu promosi.
Siapkan card cetak atau digital dengan destinasi QR yang bisa kamu update dari workspace.
Kumpulkan vote atau pertanyaan dari audiens dan lihat aktivitas dari akun yang sama.
Bagikan link donasi, toko, kontak, dan komunitas dari halaman support publik.
Ukur kunjungan dengan counter ringan dan analytics workspace yang ramah privasi.
Workspace options
Opsi workspace mencakup pembuatan konten, analytics, import, export, akses developer, dan kontrol ramah privasi. Limit paket berlaku untuk aset aktif atau terlacak, sedangkan short link tanpa tracking tetap unlimited.
Buat, edit, pause, restore, dan atur aset Lynko publik dari dashboard.
Lihat klik, scan, view, vote, referrer, perangkat, bahasa, dan hasil campaign saat tracking aktif.
Short link terlacak, halaman publik, kode QR aktif, Smart Card, poll, counter, pixel, tombol Support Hub, dan Campaign Kit mengikuti limit paket.
Pindahkan data workspace masuk dan keluar dengan CSV dan tool export yang didukung sesuai paketmu.
Buat API key dengan scope, hubungkan webhook, dan otomatisasi aksi workspace yang didukung.
Gunakan analytics ramah privasi, URL root Lynko, upload aman, dan ownership check di semua tool workspace.
API developer
API Lynko adalah API JSON full-platform untuk otomatisasi workspace. Buat API key di workspace Developer, pilih hanya permission yang dibutuhkan integrasi, lalu kirim request ke base URL API.
Use X-API-Key for the most reliable API authentication. Authorization Bearer tokens are also supported when your hosting environment passes Authorization headers to PHP.
A 401 response means the key was not accepted. Check that the key is active, not revoked, copied without spaces, and belongs to the API host you are calling.
| Paket | Request per menit | Request per hari |
|---|---|---|
| Free / Bronze | 20 | 1000 |
| Silver | 60 | 5000 |
| Gold | 120 | 20000 |
Read memakai limit normal. Write dan ringkasan analytics memakai limit lebih ketat, sedangkan export, test webhook, dan upload kecil memakai limit paling ketat.
Contoh penggunaan
Contoh ini menunjukkan pola umum. Ganti YOUR_API_KEY dengan key berscope dari workspace Developer dan jaga key itu tetap privat.
The JavaScript example must be run in a browser console or Node.js, not directly in Windows PowerShell. For PowerShell, use the Windows PowerShell example.
curl -H "X-API-Key: YOUR_API_KEY" https://lynko.tv/api/v1/me
curl -X POST https://lynko.tv/api/v1/shortlinks \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url":"https://example.com/landing","title":"Campaign launch"}'
const response = await fetch('https://lynko.tv/api/v1/qr-codes', {
method: 'POST',
headers: {
'X-API-Key': 'YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
target_url: 'https://example.com/menu',
title: 'Menu QR code'
})
});
const qrCode = await response.json();
$headers = @{
'X-API-Key' = 'YOUR_API_KEY'
}
$body = @{
target_url = 'https://example.com/menu'
title = 'Menu QR code'
} | ConvertTo-Json
$response = Invoke-RestMethod `
-Uri 'https://lynko.tv/api/v1/qr-codes' `
-Method Post `
-Headers $headers `
-ContentType 'application/json' `
-Body $body
$response
<?php
$ch = curl_init('https://lynko.tv/api/v1/analytics/summary');
curl_setopt_array($ch, [
CURLOPT_HTTPHEADER => ['X-API-Key: YOUR_API_KEY'],
CURLOPT_RETURNTRANSFER => true,
]);
$json = curl_exec($ch);
curl_close($ch);
$summary = json_decode((string)$json, true);
Buat short link, buat kode QR untuk destinasi yang sama, lalu lihat performa dari analytics.
Update halaman link, Smart Card, Support Hub, atau destinasi QR dari tool internalmu sendiri.
Ambil ringkasan analytics workspace dan gabungkan dengan catatan campaign atau laporan klienmu.
Gunakan webhook untuk klik link, scan QR, submission capture, lead campaign, vote poll, dan perubahan billing.
Permission dan endpoint
API key memiliki scope. Beri tiap integrasi hanya permission yang dibutuhkan, lalu rotasi atau revoke key dari workspace Developer saat akses tidak lagi diperlukan.
/api/v1/me
Detail akun dan kunci API
account:read for email and subscription details
/api/v1/rate-limits
Batas plan saat ini dan biaya endpoint
-
/api/v1/shortlinks
Daftar shortlink
links:read
/api/v1/shortlinks
Buat shortlink
links:write
/api/v1/qr-codes
Daftar kode QR
qr:read
/api/v1/qr-codes
Buat kode QR
qr:write
/api/v1/link-pages
Daftar halaman link
trees:read
/api/v1/link-pages
Buat halaman link
trees:write
/api/v1/polls
Daftar poll
polls:read
/api/v1/polls
Buat poll
polls:write
/api/v1/ama
Baca pengaturan AMA
ama:read
/api/v1/ama
Buat atau update pengaturan AMA
ama:write
/api/v1/capture/blocks
Daftar blok Reward Unlock
capture:read
/api/v1/capture/blocks
Buat atau update blok Reward Unlock
capture:write
/api/v1/capture/submissions
Daftar submission Reward Unlock
capture:read
/api/v1/campaign-kits
Daftar Campaign Kits
campaigns:read
/api/v1/campaign-kits
Buat Campaign Kit
campaigns:write
/api/v1/smart-cards
Daftar Smart Cards
cards:read
/api/v1/smart-cards
Buat Smart Card
cards:write
/api/v1/counters
Daftar counter dan Insight Pixels
counters:read
/api/v1/counters
Buat counter atau Insight Pixel
counters:write
/api/v1/support-hub
Baca pengaturan Support Hub
support:read
/api/v1/support-hub
Update pengaturan Support Hub
support:write
/api/v1/creator-drops
Daftar Creator Drops
drops:read
/api/v1/creator-drops
Buat Creator Drop
drops:write
/api/v1/creator-drops/{id}/images
Upload satu gambar Creator Drop
drops:write + uploads:write
/api/v1/analytics/summary
Baca ringkasan analytics workspace
analytics:read
/api/v1/webhooks
Daftar endpoint webhook
webhooks:write
/api/v1/webhooks
Buat endpoint webhook
webhooks:write
/api/v1/webhooks/{id}
Update endpoint webhook
webhooks:write
/api/v1/webhooks/{id}
Hapus endpoint webhook
webhooks:write
/api/v1/webhooks/{id}/test
Masukkan event test webhook ke antrean
webhooks:write
Langkah berikutnya
Gunakan halaman ini saat kamu siap membuat API key, menghubungkan webhook, export data, atau meminta bantuan integrasi.