ZAPIER WEBHOOKS
Zapier Integration
Trigger ClipToFrame from Zapier using Webhooks and route thumbnails to any app.
Use case
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
- Create a Zap with a trigger (new file or webhook).
- Use Webhooks by Zapier → Custom Request.
- 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.