v13

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-015232292.9 KB
Tables

List Tables

List all tables in a workspace. Returns table metadata including name, schema, and row counts.

get/api/v1/tables

Query parameters

workspaceIdstring required

The unique identifier of the workspace.

Response

List of tables in the workspace.

successboolean

Indicates whether the request was successful.

Example response

{
  "data": {
    "tables": [
      {
        "id": "tbl_92e4c6a8b0d24f1e8a3c5d7b9f0e2a14",
        "name": "contacts",
        "description": "Customer contact records",
        "schema": {
          "columns": [
            {
              "name": "email"
            }
          ]
        }
      }
    ]
  }
}