Events
| Event | When |
|---|---|
agent.task.status_update | Task status changes (started, finished, or stopped) |
test | Webhook test ping |
Payload
Signature verification
Every webhook request includes two headers:X-Browser-Use-Signature— HMAC-SHA256 signature of the payloadX-Browser-Use-Timestamp— Unix timestamp (seconds) when the request was sent
{timestamp}.{body}, where body is the JSON-serialized payload with keys sorted alphabetically and no extra whitespace. Verify it to ensure the request is authentic and to prevent replay attacks.