GET
/
v1
/
table
curl --request GET \
  --url https://{db}.{region}.api.lancedb.com/v1/table/ \
  --header 'x-api-key: <api-key>'
{
  "tables": [
    "<string>"
  ],
  "page_token": "<string>"
}

Authorizations

x-api-key
string
header
required

Query Parameters

limit
integer
default:10

Limits the number of items to return.

Required range: x >= 1
page_token
string

Specifies the starting position of the next query

Response

200
application/json
Successfully returned a list of tables in the DB
tables
string[]
page_token
string