MAKE SCENARIOS
Make Integration
Add ClipToFrame to your Make scenarios with the HTTP module and automate thumbnails.
Use case
Extract a frame when a new video lands in Google Drive or S3, then post it to Slack, Notion, or your CMS automatically.
How it works
- Trigger a Make scenario from a file event or webhook.
- Call ClipToFrame using the HTTP module.
- Store the returned image URL in your next module.
Make HTTP module example
// Make HTTP module (POST)
// URL: https://video-capture-api.onrender.com/capture
// Headers:
// x-api-key: YOUR_API_KEY
// Origin: https://cliptoframe.com
// Body (JSON):
{
"videoUrl": "{{1.video_url}}",
"time": 8,
"outputFormat": "jpg",
"quality": 90,
"maxWidth": 1280,
"maxHeight": 720
}