<a id="ksqldb-reference-show-streams"></a>

# SHOW STREAMS statement in ksqlDB for Confluent Platform

## Synopsis

```sql
SHOW | LIST STREAMS [EXTENDED];
```

## Description

List the defined streams.

## Example

```sql
-- See the list of streams currently registered:
SHOW STREAMS;

-- See extended information about currently registered streams:
LIST STREAMS EXTENDED;
```
