Linktree Webhooks & Events
Webhook Handler
app.post('/webhooks/linktree', (req, res) => {
// Verify signature
const event = req.body;
console.log(`Event: ${event.type}`);
res.status(200).send('OK');
});
Resources
Next Steps
See linktree-performance-tuning.