# `bird audiences list-contacts`

## Usage

```bash
bird audiences list-contacts <audience-id> [flags]
```

## Description

List the contacts in a static audience by ID, as a cursor page ordered by when each contact joined (most recent first). Each entry pairs the contact with its join time.

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

## Examples

```bash
bird audiences list-contacts
bird audiences list-contacts | jq -r '.data[].id'
bird audiences list-contacts --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                                                          |
| ------------------- | -------------------------------------------------------------------- |
| `--q`               | Case-insensitive substring match against the member's email address. |
| `--response-schema` | Print the fields this command returns, then exit                     |

## Related

| Name                                                                              | Description                               |
| --------------------------------------------------------------------------------- | ----------------------------------------- |
| [`bird audiences add-contacts`](/docs/cli/reference/audiences-add-contacts)       | Add contacts to a static audience.        |
| [`bird audiences create`](/docs/cli/reference/audiences-create)                   | Create an audience.                       |
| [`bird audiences delete`](/docs/cli/reference/audiences-delete)                   | Delete an audience                        |
| [`bird audiences get`](/docs/cli/reference/audiences-get)                         | Get an audience                           |
| [`bird audiences list`](/docs/cli/reference/audiences-list)                       | List audiences                            |
| [`bird audiences remove-contact`](/docs/cli/reference/audiences-remove-contact)   | Remove a contact from an audience         |
| [`bird audiences remove-contacts`](/docs/cli/reference/audiences-remove-contacts) | Remove contacts from a static audience.   |
| [`bird audiences update`](/docs/cli/reference/audiences-update)                   | Update an audience's name or description. |