---
title: "Retrieve Webhook"
method: GET
path: "/api/v2/webhooks/{id}"
tags: ["Webhooks"]
---

# Retrieve Webhook

`GET /api/v2/webhooks/{id}`

Retrieve a single webhook by ID. The webhook must belong to the authenticated user's API key.

## Path parameters

- `id` integer, required

## Response `200`

- WebhookFullRead — Read-only serializer for webhook responses (list, retrieve, create, update). ``masked_auth_secret`` is a pre-computed field stored on the model that exposes only the last 4 characters of the auth secret (e.g. ``"****7890"``). Secrets of 4 or fewer characters are fully masked as ``"****"``. This avoids decrypting the auth secret on every read request.
  - `id` integer, required
  - `event_type` string, required
  - `active` boolean, required
  - `is_test` boolean, required
  - `url` string, uri, required
  - `header_name` string, required
  - `prefix` string, required
  - `masked_auth_secret` string, required
  - `created_at` string, date-time, required

## Other responses

- `401`
- `403`
- `404`
- `429`

---

[API](https://skmtc.net/daloopa/apis/daloopa-api.md) · [All operations](https://skmtc.net/daloopa/apis/daloopa-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/daloopa/daloopa-api/versions/746538a1eb45/schema)
