GET
/
v1
/
tables
/
{name}
/
indexes
List Indexes
curl --request GET \
  --url https://{db}.{region}.api.lancedb.com/v1/tables/{name}/indexes \
  --header 'x-api-key: <api-key>'
{
  "indexes": [
    {
      "index_name": "vector_idx",
      "index_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "columns": [
        "vector"
      ],
      "index_status": "pending"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

name
string
required

name of the table

Response

200
application/json

List of existing indices on the table.

Each entry represents a segment of an index. They can be grouped by index_name to get the full index.

The response is of type object.