Gluecrawl Docs
Webhooks

List Webhooks

Retrieve the account's zero-or-one webhook configuration.

GET/v1/webhooks
Authentication
Bearer API key
Request
No body
Response
200 JSON
Billing
No direct charge
Execution
Immediate

The response is an array to keep the public API extensible, but an account can currently have at most one endpoint. last_delivery is always null in list results; use Get a Webhook when you need it.

curl 'https://api.gluecrawl.ai/v1/webhooks' \  -H 'Authorization: Bearer glue_yourApiKeyHere'

Responses

application/json
{  "data": [{  "id": "7f5a3b8d-2d70-4e20-9bf7-c80673f10916",  "url": "https://example.com/webhooks/gluecrawl",  "events": ["job.ready", "run.completed"],  "enabled": true,  "created_at": "2026-08-02T14:00:00Z",  "updated_at": "2026-08-02T14:00:00Z",  "last_delivery": null}]}