coda_list_rows
List rows from a Coda table with optional filtering by column values and sorting. Supports pagination to retrieve large datasets.
Instructions
List rows in a Coda table with optional filtering and sorting.
Returns row data with column values. By default uses column names (not IDs) for readability. Use the query parameter to filter rows by column values. For a specific row by ID, use coda_get_row instead. Results are paginated — pass cursor to get the next page.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| doc_id | Yes | The doc ID containing the table | |
| table_id_or_name | Yes | Table ID or name to list rows from | |
| query | No | Filter formula (e.g. 'Status:"Active"' or 'c-abc123:"value"') | |
| sort_by | No | Sort by column (prefix with '-' for descending, e.g. '-Created') | |
| use_column_names | No | Use column names (True) or IDs (False) in row values | |
| limit | No | Maximum number of rows to return (1-500) | |
| cursor | No | Pagination cursor from a previous response | |
| response_format | No | 'json' for structured data, 'markdown' for readable text | json |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |