# DELETE /v2/webhooks/{id}

**Delete a webhook**

Hard delete. Any pending deliveries already enqueued may still fire (they capture the target URL + signing secret at queue time). To pause-rather-than-delete, just stop accepting deliveries at your target; after enough consecutive failures the subscription flips to `disabled`.

## Plan access

- **Plan access.** Included on every plan.
- **Cadence.** Hobby 5m · Pro 1m · Scale 1m · Enterprise 1m.
- **Capacity.** Hobby 5 · Pro 25 · Scale 100 · Enterprise unlimited.

## Body parameters

| Name | In | Type | Required | Description |
|------|----|----|----------|-------------|
| `id` | path | string | yes | Webhook id. Example: `wh_smRsF3-z36o`. |

## Status codes

- **204** — Deleted.
- **404** — Webhook not found (or not owned by this key).

## Examples

### Delete

Request:

```shell
curl -X DELETE https://api.tickerbot.io/v2/webhooks/wh_smRsF3-z36o \
  -H "Authorization: Bearer YOUR_KEY"
```

---

Interactive sandbox + parameter editor: https://tickerbot.io/api/endpoints/webhooks/delete
