POST

https://{db}.{region}.api.lancedb.com

/
v1
/
table
/
{name}
/
index
/
{index_name}
/
stats
/

Authorizations

x-api-key
string
headerrequired

Path Parameters

name
string
required

name of the table

index_name
string
required

name of the index

Response

200 - application/json
num_indexed_rows
integer
num_unindexed_rows
integer
index_type
enum<string>

type of index to create

Available options:
IVF_PQ,
IVF_HNSW_SQ,
BTREE,
BITMAP,
LABEL_LIST,
FTS
distance_type
enum<string>

distance metric to use for search

Available options:
L2,
Cosine,
Dot