Skip to main content
Configure webhooks in the Filecheck admin to push results to your server without polling.

Events

EventFires when
job.createdA job is created.
job.completedA job reaches a terminal status.

Handling a webhook

On job.completed, fetch the full job with your secret key and download files[n].outputRef:
curl https://api.filecheck.io/jobs/{jobId}?expand=runs \
  -H "Authorization: Bearer sk_live_…"
Verify webhook signatures and respond 2xx quickly; do heavy work asynchronously.