Videosignal
Pricing
Pay per usage
Videosignal
VideoSignal lets you collect videos or images from end users through a browser capture page, then notifies your backend when uploads are complete. What This Actor Does This actor creates a new VideoSignal capture link by calling the VideoSignal API and writes the link details to the Actor dataset.
Pricing
Pay per usage
Rating
0.0
(0)
Developer
videosignal.ai
Actor stats
0
Bookmarked
1
Total users
0
Monthly active users
12 days ago
Last modified
Share
VideoSignal Capture Link Actor
Generate secure VideoSignal capture links, send them to users, and receive uploaded media via webhook.
What VideoSignal Does
VideoSignal lets you collect videos or images from end users through a browser capture page, then notifies your backend when uploads are complete.
What This Actor Does
This actor creates a new VideoSignal capture link by calling the VideoSignal API and writes the link details to the Actor dataset.
It does not upload media itself. End users upload media when they open the generated link.
How Video Links Are Generated
- Actor reads input (
apiKey,webhookUrl, optional settings). - Actor calls
POST /api/v1/capture-linkson VideoSignal. - VideoSignal returns a capture link object (
id,token,url,expiresAt). - Actor stores that result in dataset output.
- You share
captureLink.urlwith your user. - After user completes capture, VideoSignal sends media details to your webhook.
Required Input
apiKey: VideoSignal API key withcapture:createscopewebhookUrl: HTTPS endpoint that receives upload completion events
Optional Input
webhookSecret: Secret used to sign webhook payloads (recommended)expiresInHours: Link validity duration (default: 168)linkSettings: Capture constraints (duration, file size, allowed types, etc.)metadata: Custom key-value data returned in webhook payloadsapiBaseUrl: Override API host if needed
Output Example
{"success": true,"captureLink": {"id": "cl_123","token": "tok_abc","url": "https://app.videosignal.io/c/tok_abc","expiresAt": "2026-03-05T12:00:00.000Z"},"webhookUrl": "https://example.com/webhooks/videosignal","message": "Capture link created successfully. Videos will be delivered via webhook."}
Webhook Delivery
When capture is completed, VideoSignal sends an event to your webhookUrl with media metadata and download links.
Recommended:
- Verify webhook signatures when
webhookSecretis configured. - Store
captureLink.idand yourmetadatavalues to map uploads back to users/workflows.


