# Retrieves a list of webhooks

Retrieve a list of webhooks that have been created for your account. The webhooks are sorted, with the most recent first.

Endpoint: GET /webhooks
Version: v1
Security: apiKey

## Security:

  - `apiKey` (unknown)
    http bearer API key

## Response 200:

  - `200` (unknown)
    webhooks found

## Response 200 fields (application/json):

  - `type` (string, required)
    Enum: "list"

  - `data` (array, required)

  - `data.id` (string, required)

  - `data.type` (string, required)
    Enum: "webhook"

  - `data.name` (string, required)

  - `data.description` (string, required)

  - `data.active` (boolean, required)

  - `data.url` (string, required)

  - `data.secret` (string, required)

  - `data.enabled_event_types` (array)

  - `data.created_at` (string, required)

  - `data._links` (object, required)

  - `data._links.self` (string, required)

  - `count` (integer, required)

  - `_links` (object, required)

  - `_links.self` (string, required)

  - `_links.next` (string)

  - `_links.prev` (string)

