---
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.

---

[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)
