list_rows
Retrieve rows from a SeaTable table with pagination support. Specify the table name, page number, and page size (default 100, max 1000) to browse data in chunks without filtering or sorting.
Instructions
List rows from a table with pagination (defaults: page=1, page_size=100). Use find_rows for filtering/sorting or query_sql for SQL queries.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| table | Yes | Table name | |
| page | No | Page number (1-based) | |
| page_size | No | Rows per page (max 1000) |