# `bird webhooks list`

## Usage

```bash
bird webhooks list [flags]
```

## Description

List the workspace's webhook endpoints (URL, subscribed events, status) as a cursor page.

Returns a paginated JSON envelope; narrow with the filters below and page with --limit and --starting-after.

## Examples

```bash
bird webhooks list
bird webhooks list | jq -r '.data[].id'
bird webhooks list --limit 50 --starting-after <cursor>
```

## Options

#### Pagination

| Name               | Description                                                                                                                                    |
| ------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------- |
| `--ending-before`  | Cursor from the prev_cursor field of a previous list response. Returns items immediately before the cursor position in the current sort order. |
| `--include-total`  | When true, the response includes a total field with the total number of items matching the request's filters across all pages.                 |
| `--limit <n>`      | Maximum number of items to return per page.                                                                                                    |
| `--order`          | Sort direction. Defaults to desc (newest/largest first).                                                                                       |
| `--sort`           | Field to sort by: created_at (the default; newest first with the default order) or url.                                                        |
| `--starting-after` | Cursor from the next_cursor field of a previous list response. Returns items immediately after the cursor position in the current sort order.  |

#### Filters

| Name                | Description                                      |
| ------------------- | ------------------------------------------------ |
| `--response-schema` | Print the fields this command returns, then exit |

## Related

| Name                                                                        | Description                   |
| --------------------------------------------------------------------------- | ----------------------------- |
| [`bird webhooks attempts`](/docs/cli/reference/webhooks-attempts)           | List delivery attempts        |
| [`bird webhooks create`](/docs/cli/reference/webhooks-create)               | Create a webhook endpoint     |
| [`bird webhooks delete`](/docs/cli/reference/webhooks-delete)               | Delete a webhook endpoint     |
| [`bird webhooks get`](/docs/cli/reference/webhooks-get)                     | Get a webhook endpoint        |
| [`bird webhooks rotate-secret`](/docs/cli/reference/webhooks-rotate-secret) | Rotate webhook signing secret |
| [`bird webhooks test`](/docs/cli/reference/webhooks-test)                   | Send a test event             |