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 update <tableId>
Update a table's instructions or name. Provide at least one option.
$
limai tables update <tableId>Update a table's instructions or name.
Options
--instructions <text>New instructions text--instructions-file <file>Read new instructions from a file (overrides --instructions)--name <name>New table namelimai 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_abc123Update table instructions
limai tables update tbl_abc123 --instructions "Extract only line items"List 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