# List

Launch stage: Beta

`GET /api/2.0/postgres/{parent=projects/*/branches/*/databases/*/cdf-configs/*}/cdf-statuses`

List the per-table CDF statuses within a Lakebase CDF configuration. Each
 status shows whether a table's change data feed is snapshotting, streaming,
 or skipped.

API scopes: postgres

## Path parameters

- `parent` (string, optional)
  The parent CdfConfig to list CdfStatuses for.
   Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}

## Query parameters

- `page_size` (int32, optional)
  Maximum number of CdfStatuses to return.
- `page_token` (string, optional)
  Pagination token returned by a previous ListCdfStatuses call. Empty on the
   first page.

## Returns

Returns a list of CdfStatus objects.

## Response

```json
{
  "cdf_statuses": [
    {
      "name": "string",
      "postgres_table": "string",
      "uc_table": "string",
      "state": "string",
      "committed_lsn": "string",
      "last_sync_time": "string",
      "create_time": "string",
      "status_detail": "string"
    }
  ],
  "next_page_token": "string"
}
```

