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 loggingSubcommands
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-paginationlimai tables columns <tableId>
List all columns in a table.
limai tables columns <tableId>Examples
View table details
limai tables get tbl_abc123List first 50 rows
limai tables rows tbl_abc123Fetch all rows as JSON
limai tables rows tbl_abc123 --all --jsonList table columns
limai tables columns tbl_abc123 --json