Real-time Access
Get instant access to new verified footage as it's approved.
RESTful API
Clean, well-documented endpoints with JSON responses.
Secure Authentication
OAuth 2.0 and API key authentication options.
Webhook Support
Real-time notifications for new footage and bounty submissions.
ENDPOINTS
GET
/api/footageGET
/api/footage/:idPOST
/api/footage/:id/offerGET
/api/bountiesPOST
/api/bountiesGET
/api/licensesPOST
/api/webhooksQUICK EXAMPLE
// Search for breaking news footageconst response = await fetch('https://api.vidwire.tv/api/footage', { headers: { 'Authorization': 'Bearer YOUR_API_KEY', 'Content-Type': 'application/json' }, method: 'GET', params: { category: 'breaking', location: 'Los Angeles', minResolution: '1080p', limit: 10 }});const footage = await response.json();// Returns array of matching footage with previewsRATE LIMITS
100
requests/min
Pay As You Go
1,000
requests/min
Pro Plan
Unlimited
requests/min
Enterprise
CLIENT LIBRARIES
JavaScript/TypeScriptAvailable
PythonAvailable
GoComing Soon