Web SDK demo
This page loads /sdk/linkly.js and calls the real endpoints. Paste your project sdkKey (from the project page) to try it.
Code:
<script src="/sdk/linkly.js"></script>
<script>
Linkly.init({ key: "<sdkKey>" }).then(function (s) {
if (s.matched) console.log("attributes:", s.data);
});
</script>