# Get

Launch stage: Beta

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

Get the CDF status of a single table within a Lakebase CDF configuration,
 including its current state and the last committed position in the feed.

API scopes: postgres

## Path parameters

- `name` (string, optional)
  The resource name of the CdfStatus to retrieve.
   Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}/cdf-statuses/{cdf_status}

## Returns

Returns the CdfStatus object.

## Response

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

