# `bird realtime apps list`

## Usage

```bash
bird realtime apps list [flags]
```

## Description

List the workspace's Realtime apps as a cursor page, filterable by a case-insensitive `name` substring. Each entry carries the connection details a client needs (`app_id`, `region`) but no key material.

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

## Examples

```bash
bird realtime apps list
bird realtime apps list | jq -r '.data[].id'
bird realtime apps 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). Possible values: asc, desc.                                                           |
| `--sort`           | Field to sort by. Possible values: created_at, name.                                                                                           |
| `--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                                              |
| ------------------- | -------------------------------------------------------- |
| `--name`            | Substring match against the app name (case-insensitive). |
| `--response-schema` | Print the fields this command returns, then exit         |

## Related

| Name                                                                    | Description           |
| ----------------------------------------------------------------------- | --------------------- |
| [`bird realtime apps create`](/docs/cli/reference/realtime-apps-create) | Create a Realtime app |
| [`bird realtime apps delete`](/docs/cli/reference/realtime-apps-delete) | Delete a Realtime app |
| [`bird realtime apps get`](/docs/cli/reference/realtime-apps-get)       | Get a Realtime app    |
| [`bird realtime apps update`](/docs/cli/reference/realtime-apps-update) | Update a Realtime app |