GET
/
v1
/
tables
/
{name}
Get Table Details
curl --request GET \
  --url https://{db}.{region}.api.lancedb.com/v1/tables/{name} \
  --header 'x-api-key: <api-key>'
{
  "table": "products",
  "version": 5,
  "schema": {
    "fields": [
      {
        "name": "id",
        "type": {
          "name": "int64"
        }
      },
      {
        "name": "name",
        "type": {
          "type": "string"
        }
      },
      {
        "name": "vector",
        "type": {
          "type": "float32",
          "length": 128
        }
      }
    ],
    "metadata": {
      "key": "value"
    }
  },
  "stats": {
    "num_deleted_rows": 150,
    "num_fragments": 12
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

name
string
required

name of the table

Response

200
application/json

Detailed table information including schema, statistics, and metadata.

The response includes:

  • table: Name of the table
  • version: Latest version number for change tracking
  • schema: Complete Arrow schema with field definitions
  • stats: Performance and storage statistics

The response is of type object.