ZAPIER WEBHOOKS

Zapier Integration

Trigger ClipToFrame from Zapier using Webhooks and route thumbnails to any app.

Use case

Zapier Logo

When a new video is uploaded (YouTube, Dropbox, Drive), Zapier can call ClipToFrame and store the thumbnail in Airtable, Notion, or a CMS.

How it works

  1. Create a Zap with a trigger (new file or webhook).
  2. Use Webhooks by Zapier → Custom Request.
  3. Map the response image URL to your target app.

Zapier Webhook example

// Webhooks by Zapier (POST)
// URL: https://video-capture-api.onrender.com/capture
// Headers:
//   x-api-key: YOUR_API_KEY
//   Origin: https://cliptoframe.com
// Body (JSON):
{
  "videoUrl": "{{bundle.inputData.video_url}}",
  "time": 15,
  "outputFormat": "jpg",
  "quality": 90,
  "maxWidth": 1280,
  "maxHeight": 720
}

Next steps

Create an API key and paste it into your Zapier webhook request.