N8N WORKFLOWS
n8n Integration
Automate frame extraction inside n8n workflows with a single HTTP Request node.
Use case
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
- Trigger workflow (webhook, Google Drive, S3, or form).
- Use the HTTP Request node to call ClipToFrame.
- 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
}