# `bird email inbound-addresses list`

## Usage

```bash
bird email inbound-addresses list [flags]
```

## Description

List the workspace's Bird-minted inbound addresses as a cursor page.

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

## Examples

```bash
bird email inbound-addresses list
bird email inbound-addresses list | jq -r '.data[].id'
bird email inbound-addresses 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. |
| `--limit <n>`      | Maximum number of items to return per page.                                                                                                    |
| `--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 email inbound-addresses create`](/docs/cli/reference/email-inbound-addresses-create) | Create an inbound address |
| [`bird email inbound-addresses delete`](/docs/cli/reference/email-inbound-addresses-delete) | Delete an inbound address |
| [`bird email inbound-addresses get`](/docs/cli/reference/email-inbound-addresses-get)       | Get an inbound address    |
| [`bird email inbound-addresses update`](/docs/cli/reference/email-inbound-addresses-update) | Update an inbound address |