Tables
Get Table
Retrieve a table's metadata, schema, and row count.
get/api/v1/tables/{tableId}
Path parameters
tableIdstring required
Example:tbl_92e4c6a8b0d24f1e8a3c5d7b9f0e2a14
The unique identifier of the table.
Query parameters
workspaceIdstring required
The unique identifier of the workspace.
Response
Table details.
Example response
{
"data": {
"table": {
"id": "tbl_92e4c6a8b0d24f1e8a3c5d7b9f0e2a14",
"name": "contacts",
"description": "Customer contact records",
"schema": {
"columns": [
{
"name": "email"
}
]
}
}
}
}