Every time a session finishes analysis, Videlic can POST the full result to any URL you configure. Works with Zapier, n8n, Make, and any custom backend.
View webhook docsWhat you get
Every completed session fires a POST to your webhook URL with orgId, reportId, trustScore, reportUrl, and a summary.
Zapier, n8n, Make, Pipedream — or your own Express/FastAPI endpoint. If it accepts a JSON POST, it works with Videlic.
Every request includes an X-Videlic-Signature header so you can verify the payload is genuinely from Videlic.
How to set up
Get your webhook URL
Create a webhook endpoint in Zapier, n8n, or your own server. Copy the URL.
Register in Videlic
Dashboard → Settings → Notifications → Custom Webhook. Paste your URL and save.
Example webhook payload
POST https://your-server.com/webhooks/videlic
{
"event": "analysis.complete",
"orgId": "org_xyz",
"reportId": "rpt_abc123",
"trustScore": 42,
"reportUrl": "videlic.dev/s/abc123",
"agent": "claude-code",
"branch": "feat/auth-refactor"
}