

# FT.INFO
<a name="vector-search-commands-ft.info"></a>

**Syntax**

```
FT.INFO <index-name>
```

Output from the FT.INFO page is an array of key value pairs as described in the following table:


| Key | Value type | Description | 
| --- | --- | --- | 
| index\$1name | string | Name of the index | 
| creation\$1timestamp | integer | Unix-style timestamp of creation time | 
| key\$1type | string | HASH or JSON | 
| key\$1prefixes | array of strings | Key prefixes for this index | 
| fields | array of field information | Fields of this index | 
| space\$1usage | integer | Memory bytes used by this index | 
| fullext\$1space\$1usage | integer | Memory bytes used by non-vector fields | 
| vector\$1space\$1usage | integer | Memory bytes used by vector fields | 
| num\$1docs | integer | Number of keys currently contained in the index | 
| num\$1indexed\$1vectors | integer | Number of vectors currently contained in the index | 
| current\$1lag | integer | Recent delay of ingestion (milliSeconds) | 
| backfill\$1status | string | One of: Completed, InProgres, Paused or Failed  | 

The following table describes the information for each field:


| Key | Value type | Description | 
| --- | --- | --- | 
| identifier | string | name of field | 
| field\$1name | string | Hash member name or JSON Path | 
| type | string | one of: Numeric, Tag, Text or Vector | 
| option | string | ignore | 

If the field is of type Vector, additional information will be present depending on the algorithm. 

For the HNSW algorithm:


| Key | Value type | Description | 
| --- | --- | --- | 
| algorithm | string | HNSW | 
| data\$1type | string | FLOAT32 | 
| distance\$1metric | string | one of: L2, IP or Cosine | 
| initial\$1capacity | integer | Initial size of vector field index | 
| current\$1capacity | integer | Current size of vector field index | 
| maximum\$1edges | integer | M parameter at creation | 
| ef\$1construction | integer | EF\$1CONSTRUCTION parameter at creation | 
| ef\$1runtime | integer | EF\$1RUNTIME parameter at creation | 

For the FLAT algorithm:


| Key | Value type | Description | 
| --- | --- | --- | 
| algorithm | string | FLAT | 
| data\$1type | string | FLOAT32 | 
| distance\$1metric | string | one of: L2, IP or Cosine | 
| initial\$1capacity | integer | Initial size of vector field index | 
| current\$1capacity | integer | Current size of vector field index | 