# Get webhook subscription

**Documentation:** /reference/api-reference/webhooks/getWebhookSubscriptionsById

Retrieves a webhook subscription by ID.

---

## GET `/api/v3/webhook_subscriptions/{id}`

**Endpoint:** `https://backend.composio.dev/api/v3/webhook_subscriptions/{id}`

**Summary:** Get webhook subscription

Retrieves a webhook subscription by ID.

### Authentication

**ApiKeyAuth** - API Key in `header` header `x-api-key` OR **UserApiKeyAuth** - API Key in `header` header `x-user-api-key`

### Path Parameters

- `id` (string (webhookSubscriptionId)) *(required)*: Webhook subscription ID

### Responses

#### 200 - Webhook subscription retrieved

**Response Schema:**

- `id` (string (webhookSubscriptionId)) *(required)*: Unique subscription ID
- `webhook_url` (string) *(required)*: Webhook destination URL
- `version` (enum: "V1" | "V2" | "V3") *(required)*: Webhook payload version
- `enabled_events` (array<string>) *(required)*: Subscribed event types
- `secret` (string) *(required)*: Masked signing secret (full secret only on create/rotate)
- `created_at` (string) *(required)*: ISO 8601 timestamp
- `updated_at` (string) *(required)*: ISO 8601 timestamp

**Example Response:**

```json
{
  "id": "string",
  "webhook_url": "string",
  "version": "V1",
  "enabled_events": [
    "string"
  ],
  "secret": "string",
  "created_at": "string",
  "updated_at": "string"
}
```

#### 401 - Unauthorized

**Response Schema:**

- `error` (object) *(required)*
  - `message` (string) *(required)*
  - `code` (number) *(required)*
  - `slug` (string) *(required)*
  - `status` (number) *(required)*
  - `request_id` (string)
  - `suggested_fix` (string)
  - `errors` (array<string>)

#### 404 - Subscription not found

**Response Schema:**

- `error` (object) *(required)*
  - `message` (string) *(required)*
  - `code` (number) *(required)*
  - `slug` (string) *(required)*
  - `status` (number) *(required)*
  - `request_id` (string)
  - `suggested_fix` (string)
  - `errors` (array<string>)

#### 500 - Internal server error

**Response Schema:**

- `error` (object) *(required)*
  - `message` (string) *(required)*
  - `code` (number) *(required)*
  - `slug` (string) *(required)*
  - `status` (number) *(required)*
  - `request_id` (string)
  - `suggested_fix` (string)
  - `errors` (array<string>)

### Example cURL Request

```bash
curl -X GET "https://backend.composio.dev/api/v3/webhook_subscriptions/string" \
  -H "x-api-key: YOUR_API_KEY"
```