---
title: "Retrieve a webhook"
method: GET
path: "/api/v1/webhooks/{id}"
tags: ["Webhooks"]
---

# Retrieve a webhook

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

Retrieves the specified webhook.

## Path parameters

- `id` string, uuid, required

## Headers

- `X-Merchant-Code` string, required

## Response `200`

Success. Webhook object is returned.

- Webhook
  - `header` object, nullable
    - `title` string — Arbitrary header name to sign the request.
    - `value` string — Random string to sign the request.
  - `id` string, required — Unique webhook ID, assigned by Tabby.
  - `is_test` boolean, required — Deprecated. The webhook environment is determined by the secret key used at registration (production `sk_...` or test `sk_test_...`), not by this field.
  - `url` string, uri, required — HTTPS endpoint for notifications. The URL should be valid and accessible (not local).

## Other responses

- `401` — The request cannot be authorized.
- `404` — You are using an incorrect ID.
- `500` — Something bad happened. We're notified.

## Changes

- **2026-08-28** `cff62a2a6ee9` — 1 breaking, 3 info
  - the response's body type/format changed from `string`/`` to `object`/`` for status `500`
  - added the optional property `error` to the response with the `500` status
  - added the optional property `errorType` to the response with the `500` status
  - added the optional property `status` to the response with the `500` status

[Change history](https://skmtc.dev/tabby/apis/tabby-api-reference/changes/api/v1/webhooks/:id/get.md)

---

[API](https://skmtc.dev/tabby/apis/tabby-api-reference.md) · [All operations](https://skmtc.dev/tabby/apis/tabby-api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/tabby/tabby-api-reference/revisions/cff62a2a6ee9/schema)
