curl --request POST \
--url https://{db}.{region}.api.lancedb.com/v1/table/{name}/describe/ \
--header 'x-api-key: <api-key>'
{
"table": "<string>",
"version": 123,
"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": 123,
"num_fragments": 123
}
}
Describe a table and return Table Information.
curl --request POST \
--url https://{db}.{region}.api.lancedb.com/v1/table/{name}/describe/ \
--header 'x-api-key: <api-key>'
{
"table": "<string>",
"version": 123,
"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": 123,
"num_fragments": 123
}
}
name of the table
Table information
The response is of type object
.