From 1263307373b8e26389c604e011c9955b7cc5f913 Mon Sep 17 00:00:00 2001 From: "firecrawl-spring[bot]" <254786068+firecrawl-spring[bot]@users.noreply.github.com> Date: Mon, 4 May 2026 15:01:46 +0000 Subject: [PATCH] docs(webhooks): improve event filtering intro Co-Authored-By: micahstairs --- webhooks/events.mdx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/webhooks/events.mdx b/webhooks/events.mdx index 16a37e9f..6cdd32ee 100644 --- a/webhooks/events.mdx +++ b/webhooks/events.mdx @@ -335,7 +335,7 @@ Sent when the agent job is cancelled by the user. ## Event Filtering -By default, you receive all events. To subscribe to specific events only, use the `events` array in your webhook config: +Subscribe to a subset of events to skip the per-page updates you don't need and reduce traffic to your endpoint. Pass an `events` array in your webhook config to choose which events you receive; omit it to receive all events. ```json { @@ -343,5 +343,3 @@ By default, you receive all events. To subscribe to specific events only, use th "events": ["completed", "failed"] } ``` - -This is useful if you only care about job completion and don't need per-page updates.