INTEGRATION GUIDE

VAP + n8n / Zapier

Automate AI media generation in your existing workflows. Connect VAP via REST API or webhooks.

Automation Examples

E-commerce: New product added → Auto-generate product images
Social Media: New blog post → Generate video summary for TikTok
Podcasts: New episode published → Create intro music + audiogram

Supported Platforms

n8n
Self-hosted or cloud
Zapier
Via HTTP node
Make
Via HTTP module

Integration Method

REST API

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"
  }
}

Webhooks (Async)

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"]
  }
}

n8n Template

Coming soon: Pre-built n8n workflow template for VAP integration. Join our mailing list to be notified.

FAQ

Is there a native Zapier app?

Not yet. Use Zapier's "Webhooks by Zapier" or "Code by Zapier" actions to call VAP's REST API directly.

How do I handle long-running generations?

Video generation takes 30-90 seconds. Use webhooks to receive a callback when complete, rather than polling. See webhook docs.

What are the rate limits?

Standard tier: 60 requests/minute. Enterprise: custom limits. See rate limits for details.

Ready to automate?

Get your API key and start building workflows.

Get API Key