editframe-webhooks

Installation
SKILL.md

Webhooks

Receive real-time HTTP notifications when renders complete, files finish processing, or other asynchronous events occur in your Editframe account.

Setup

Webhooks are configured on an API key, not separately. The webhook URL and events you want to receive are set at API key creation time.

Step 1: Create an API key with webhook configuration via the Editframe dashboard (editframe.com → API Keys → Create), or via your application's API key management endpoint. The dashboard returns a webhook secret — store it securely.

Step 2: Handle webhook requests:

// 3. Handle webhook requests
app.post("/webhooks/editframe", async (req, res) => {
  const signature = req.headers["x-webhook-signature"];
  const payload = JSON.stringify(req.body);
  const webhookSecret = process.env.EDITFRAME_WEBHOOK_SECRET;
Related skills

More from editframe/skills

Installs
7
GitHub Stars
4
First Seen
Mar 18, 2026