MAKE SCENARIOS

Make Integration

Add ClipToFrame to your Make scenarios with the HTTP module and automate thumbnails.

Use case

Make.com Logo

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

  1. Trigger a Make scenario from a file event or webhook.
  2. Call ClipToFrame using the HTTP module.
  3. 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
}

Next steps

Get your API key and connect it to the Make HTTP module.