Follow this 5-step choreography to create a professional 2-minute walkthrough.
Split your screen: Left side (Apify Console) | Right side (Terminal or Postman).
- Open your Actor on the Apify Console at
[YOUR-ACTOR-URL]. - Click Start in the bottom left.
- Narrate: "We're starting the Webhook Debugger in Standby mode for instant response times."
- Go to the Live View or URL provided in the logs.
- Open the
/infoendpoint in a new browser tab:https://[YOUR-ACTOR-RUN-URL]/info - Narrate: "The Actor automatically generates unique, temporary webhook endpoints for us."
-
Open the
/log-streamendpoint in a new browser tab. It will look like a white page waiting for data. -
In your Terminal or Postman, send a POST request:
curl -X POST https://[YOUR-ACTOR-RUN-URL]/webhook/[YOUR-WEBHOOK-ID] \ -H "Content-Type: application/json" \ -d '{"event": "demo_test", "status": "active"}'
-
Narrate: "Watch the browser tab on the left — as soon as I send this request, the event appears instantly via Server-Sent Events."
-
Send another request with a forced error code:
curl -I "https://[YOUR-ACTOR-RUN-URL]/webhook/[YOUR-WEBHOOK-ID]?__status=401" -
Narrate: "Developers can even test error handling by overriding the response code using query parameters."
- Go back to the Apify Console and click the Dataset tab.
- Switch to the Table view.
- Narrate: "All events are permanently logged in the Apify Dataset with full metadata, available for export as JSON or CSV."
- Click Stop on the Actor.
- Zoom In: Press
Cmd +orCtrl +so the text is easy to read on mobile. - Hide Personal Data: Ensure no private tokens are visible.
- Narrate clearly: Explain why a feature is useful while you show it.