Task webhooks
Add an optionalwebhook URL when creating a browser-use task to get a callback when the task finishes or is canceled.
Note: URLs must be http or https. Include your own token (e.g., query param or header) if you need verification.
Where to send the request
- Agent-scoped:
POST /api/v1/agents/browser-use/{agentId}/tasks/ - User-level:
POST /api/v1/tasks/browser-use/
webhook plus delivery metadata:
Delivery semantics
- Fired once when status becomes
completed,failed, orcancelled. - POST JSON with headers
Content-Type: application/jsonandUser-Agent: Gobii-AgentWebhook/1.0. - 10s timeout; no retries. Non-2xx responses are recorded but not retried.
- Observability: the
webhook_last_*fields on the task reflect the last attempt.