Integration

Webhook

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 docs

What you get

Event-driven automation

analysis.complete event

Every completed session fires a POST to your webhook URL with orgId, reportId, trustScore, reportUrl, and a summary.

Works with any tool

Zapier, n8n, Make, Pipedream — or your own Express/FastAPI endpoint. If it accepts a JSON POST, it works with Videlic.

Signed payloads

Every request includes an X-Videlic-Signature header so you can verify the payload is genuinely from Videlic.

How to set up

Two steps

1

Get your webhook URL

Create a webhook endpoint in Zapier, n8n, or your own server. Copy the URL.

2

Register in Videlic

Dashboard → Settings → Notifications → Custom Webhook. Paste your URL and save.

Example webhook payload

What gets POSTed to your URL

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"

}