# FT._LIST

```json metadata
{
  "title": "FT._LIST",
  "description": "Returns a list of all existing indexes",
  "categories": ["docs","develop","stack","oss","rs","rc","oss","kubernetes","clients"],
  "syntax_fmt": "FT._LIST",
  "complexity": "O(1)",
  "group": "search",
  "command_flags": ["readonly"],
  "acl_categories": ["@admin","@search","@slow"],
  "since": "2.0.0",
  "tableOfContents": {"sections":[{"id":"examples","title":"Examples"},{"id":"redis-enterprise-and-redis-cloud-compatibility","title":"Redis Enterprise and Redis Cloud compatibility"},{"id":"return-information","title":"Return information"}]}
}
```













Returns a list of all existing indexes.


The prefix `_` in the command indicates, this is a temporary command.

In the future, a [`SCAN`](https://redis.io/docs/latest/commands/scan) type of command will be added, for use when a database
contains a large number of indices.


## Examples

```sql
FT._LIST
1) "idx"
2) "movies"
3) "imdb"
```

## Redis Enterprise and Redis Cloud compatibility

| Redis<br />Enterprise | Redis Cloud<br />Flexible & Annual | Redis Cloud<br />Free & Fixed | <span style="min-width: 9em; display: table-cell">Notes</span> |
|:----------------------|:-----------------|:-----------------|:------|
| <span title="Supported">&#x2705; Supported</span> | <span title="Supported">&#x2705; Supported</span> | <span title="Supported">&#x2705; Supported</nobr></span> |  |

## Return information

{{< multitabs id="ft-_list-return-info" 
    tab1="RESP2" 
    tab2="RESP3" >}}

[Array](https://redis.io/docs/latest/develop/reference/protocol-spec#arrays) of index names as [simple strings](https://redis.io/docs/latest/develop/reference/protocol-spec#simple-strings).

-tab-sep-

[Set](https://redis.io/docs/latest/develop/reference/protocol-spec#sets) of index names as [simple strings](https://redis.io/docs/latest/develop/reference/protocol-spec#simple-strings).


