Limai Docs
CLI Reference

tables

Table management and data access

$limai tables <subcommand>

Inspect tables, list rows, and view columns within extraction schemas.

Options
--jsonOutput raw JSON
--verboseEnable debug logging

Subcommands

limai tables get <tableId>

Get details about a table.

limai tables get <tableId>

limai tables rows <tableId>

List rows in a table with pagination support.

$limai tables rows <tableId>

List rows in a table.

Options
--limit <n>Number of rows to return(default: 50)
--offset <n>Offset for pagination(default: 0)
--allFetch all rows with auto-pagination

limai tables columns <tableId>

List all columns in a table.

limai tables columns <tableId>

Examples

View table details

limai tables get tbl_abc123

List first 50 rows

limai tables rows tbl_abc123

Fetch all rows as JSON

limai tables rows tbl_abc123 --all --json

List table columns

limai tables columns tbl_abc123 --json