---
title: "Get all webhooks (associated with the logged API user's account)"
description: "GET /webhooks — Returns the account's webhook subscriptions — each endpoint, its secret and the events it receives."
canonical_url: https://developer.onepagecrm.com/api/reference/web-hooks/get-webhooks/
source: Markdown mirror of https://developer.onepagecrm.com/api/reference/web-hooks/get-webhooks/
---

`GET /webhooks`

Returns the account's webhook subscriptions — each endpoint, its secret and the events it receives.

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" \
  -u $user_id:$api_key
```

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

## Responses

### 200

OK

```json
{
  "status": 0,
  "message": "OK",
  "timestamp": 1528373119,
  "data": {
    "webhooks": [
      {
        "id": "5417f8291da41712270a0042",
        "name": "Awesome integration",
        "hook_url": "https://{webhook.catching.machine}",
        "secretkey": ""
      }
    ],
    "total_count": 1,
    "page": 1,
    "per_page": 10,
    "max_page": 1
  }
}
```

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