# Get tables Retrieves a list of tables according to database specified. Endpoint: GET /table/list/{database_name} Version: 3 Security: ApiKeyAuth ## Path parameters: - `database_name` (string, required) database name Example: "Alpha" ## Response 200 fields (application/json): - `database` (string, required) database name Example: "Alpha" - `tables` (array, required) - `tables.id` (integer, required) Example: 11 - `tables.count` (integer, required) Example: 1000 - `tables.counter_updated_at` (any, required) - `tables.created_at` (string, required) Datetime in custom format ( or for UTC) Example: "2020-12-31 11:22:33 UTC" - `tables.delete_protected` (boolean, required) Example: true - `tables.estimated_storage_size` (integer, required) Example: 1073741824 - `tables.expire_days` (integer,null, required) Example: 30 - `tables.include_v` (boolean, required) when true, Hive queries can access a virtual column "v" which contains a map of every data column's name to its value (represented as a string). Prefer to set a schema on the table instead of using "v". - `tables.last_log_timestamp` (integer,null, required) Example: 1356998400 - `tables.name` (string, required) Example: "Bravo" - `tables.schema` (string, required) - `tables.type` (string, required) Enum: "log" - `tables.updated_at` (string, required) Datetime in custom format ( or for UTC) Example: "2020-12-31 11:22:33 UTC"