linktree-webhooks-events

Featured

Webhooks Events for Linktree. Trigger: "linktree webhooks events".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Linktree Webhooks & Events ## Overview Linktree emits real-time webhook events whenever links, profiles, or analytics milestones change. These events enable automations such as syncing new bio links to a CMS, triggering social media posts when a profile is updated, alerting marketing teams when traffic milestones are hit, and auditing link lifecycle changes for compliance dashboards. All payloads are JSON over HTTPS with HMAC-SHA256 signature verification to guarantee authenticity. ## Prerequisites - A registered Linktree developer app with webhook permissions enabled - Webhook endpoint URL accessible over HTTPS (TLS 1.2+) - Signing secret from the Linktree developer dashboard (`LINKTREE_WEBHOOK_SECRET`) - Express.js with `raw` body parsing enabled for signature verification ## Webhook Registration ```typescript import axios from "axios"; const res = await axios.post( "https://api.linktr.ee/v1/webhooks", { url: "https://your-app.com/webhooks/linktree", events: ["link.created", "link.updated", "link.deleted", "profile.updated", "analytics.milestone"], }, { headers: { Authorization: `Bearer ${process.env.LINKTREE_API_TOKEN}` } } ); console.log("Subscription ID:", res.data.id); ``` ## Signature Verification ```typescript import crypto from "crypto"; import { Request, Response, NextFunction } from "express"; function verifyLinktreeSignature(req: Request, res: Response, next: NextFunction) { const signature = req.headers["x-linktree-signa...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category