---
title: "Get a specific webhook"
description: "GET /webhooks/{webhook_id} — Returns one webhook subscription."
canonical_url: https://developer.onepagecrm.com/api/reference/web-hooks/get-webhooks-webhook_id/
source: Markdown mirror of https://developer.onepagecrm.com/api/reference/web-hooks/get-webhooks-webhook_id/
---

`GET /webhooks/{webhook_id}`

Returns one webhook subscription.

Resource: [Web Hooks](https://developer.onepagecrm.com/api/reference/web-hooks/) · [API Reference](https://developer.onepagecrm.com/api/reference/)

## Request

```bash
curl "https://app.onepagecrm.com/api/v3/webhooks/{webhook_id}" \
  -u $user_id:$api_key
```

Authentication is HTTP Basic — `user_id` as username, `api_key` as password.
See https://developer.onepagecrm.com/api/authentication/.

## Path parameters

| Name | Type | Description |
| --- | --- | --- |
| `webhook_id` | string | Webhook ID |

## Responses

### 200

OK

```json
{
  "status": 0,
  "message": "OK",
  "timestamp": 1528373119,
  "data": {
    "id": "5417f8291da41712270a0042",
    "name": "Awesome integration",
    "hook_url": "https://{webhook.catching.machine}",
    "secretkey": ""
  }
}
```

Standard error responses: 400, 401, 403, 404, 409, 500 — shared across the API. See https://developer.onepagecrm.com/api/errors/.

## Related guides

- [Authentication](https://developer.onepagecrm.com/api/authentication/)
- [Errors](https://developer.onepagecrm.com/api/errors/)
- [Rate limits](https://developer.onepagecrm.com/api/rate-limits/)
