Automate AI media generation in your existing workflows. Connect VAP via REST API or webhooks.
VAP exposes a standard REST API. Use the HTTP Request node in your automation platform:
POST https://api.vapagent.com/v3/execute
Headers:
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
Body:
{
"preset": "video.basic",
"params": {
"prompt": "Product showcase video"
}
}
For longer generations, use webhooks to receive completion notifications:
{
"preset": "video.basic",
"params": { "prompt": "..." },
"webhook": {
"url": "https://your-n8n-instance.com/webhook/vap",
"events": ["completed", "failed"]
}
}
Coming soon: Pre-built n8n workflow template for VAP integration. Join our mailing list to be notified.
Not yet. Use Zapier's "Webhooks by Zapier" or "Code by Zapier" actions to call VAP's REST API directly.
Video generation takes 30-90 seconds. Use webhooks to receive a callback when complete, rather than polling. See webhook docs.
Standard tier: 60 requests/minute. Enterprise: custom limits. See rate limits for details.