GET
/
v1
/
table
List Tables
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

Maximum number of tables to return in a single response. Defaults to 10, maximum recommended is 100.

Required range: 1 <= x <= 100
page_token
string

Token for pagination. If provided, returns results starting from the position after this token. Use the page_token from the previous response to get the next page of results.

Response

200
application/json

Successfully returned a list of tables in the DB

The response is of type object.