Webhooks
Get a Webhook
Retrieve a webhook configuration and its latest delivery.
GET
/v1/webhooks/:webhook_id- Authentication
- Bearer API key
- Request
- No body
- Response
- 200 JSON
- Billing
- No direct charge
- Execution
- Immediate
Path parameters
| Name | Type | Description |
|---|---|---|
| webhook_idrequired | uuid | Webhook configuration ID. |
last_delivery is null until Gluecrawl has created a test or lifecycle delivery. The delivery record intentionally does not include the destination URL.
curl 'https://api.gluecrawl.ai/v1/webhooks/WEBHOOK_ID' \ -H 'Authorization: Bearer glue_yourApiKeyHere'Responses
application/json
{ "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}