N8N WORKFLOWS

n8n Integration

Automate frame extraction inside n8n workflows with a single HTTP Request node.

Use case

n8n Logo

Trigger frame extraction when a video is uploaded, then store the thumbnail in S3, Notion, or Airtable. Ideal for automation-heavy pipelines and content workflows.

How it works

  1. Trigger workflow (webhook, Google Drive, S3, or form).
  2. Use the HTTP Request node to call ClipToFrame.
  3. Store the returned image URL in your destination system.

n8n HTTP Request example

// n8n HTTP Request node (POST)
// URL: https://video-capture-api.onrender.com/capture
// Headers:
//   x-api-key: YOUR_API_KEY
//   Origin: https://cliptoframe.com
// Body (JSON):
{
  "videoUrl": "{{$json.videoUrl}}",
  "time": 12,
  "outputFormat": "jpg",
  "quality": 90,
  "maxWidth": 1280,
  "maxHeight": 720
}

Next steps

Create your API key and plug it into the HTTP Request node.