Embed StitchLink on Your Website
Let visitors book meetings directly from your site. One script tag. Three embed styles. Zero friction for your guests.
2-Minute Setup
Copy a snippet, paste it into your site. That's it.
Zero Guest Signups
Visitors book without creating an account.
Conversion Callback
Get notified when a booking is confirmed via JS event.
Find your slug in Dashboard → My Page → Settings
Opens a centered popup when triggered. Best for "Book a Call" buttons that don't want to leave the page.
<!-- StitchLink Embed -->
<script src="https://stitchlink.ai/embed.js"></script>
<script>
StitchLink.popup('your-slug', {
onBooked: (data) => {
console.log('Booking confirmed!', data);
}
});
</script>Listen for booking confirmations via the onBooked callback or the postMessage API.
// Listen for booking events from any embed
window.addEventListener('message', (event) => {
if (event.data?.type === 'stitchlink:booking_confirmed') {
const { hostName, meetingType, slotsCount } = event.data.data;
console.log(`Booked with ${hostName}!`);
// Track conversion, show thank you, etc.
}
});Step-by-step guides for popular website builders.
WordPress
Appearance → Widgets → Custom HTML → paste snippet
Wix
Add Elements → Embed Code → Custom Element → paste snippet
Squarespace
Add Block → Code → paste snippet
Shopify
Online Store → Themes → Edit Code → paste in template
Need help? Check the Help Center or reach out via the support widget.