Linkuate Docs
v1.0.0 BetaWelcome to the Linkuate documentation. Learn how to install and integrate the Linkuate widget into your product using a simple JavaScript SDK.
Installation
Before you begin
To use the Linkuate widget, you'll first need to create a project. Each project has a unique Project Public ID that connects your product to Linkuate.
1. Install
Copy this script.
<script
src="https://cdn.linkuate.com/sdk/v1.0.0/widget.js"
data-project-public-id="YOUR_PROJECT_PUBLIC_ID"
defer
></script>2. Add to your website
Open your HTML file and add the SDK script inside the
<head> section before the closing </head> tag.<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Your Website</title>
<!-- Linkuate Widget -->
<script
src="https://cdn.linkuate.com/sdk/v1.0.0/widget.js"
data-project-public-id="YOUR_PROJECT_PUBLIC_ID"
defer
></script>
</head>
<body>
<!-- Your website content -->
</body>
</html>3. Installation Complete
Your widget is now installed and ready to use.