coda_list_rows
List rows from a Coda table with optional filtering by column values and sorting. Use the query parameter to filter rows and cursor for pagination.
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 |
|---|---|---|---|
| limit | No | Maximum number of rows to return (1-500) | |
| query | No | Filter formula (e.g. 'Status:"Active"' or 'c-abc123:"value"') | |
| cursor | No | Pagination cursor from a previous response | |
| doc_id | Yes | The doc ID containing the table | |
| sort_by | No | Sort by column (prefix with '-' for descending, e.g. '-Created') | |
| response_format | No | 'json' for structured data, 'markdown' for readable text | json |
| table_id_or_name | Yes | Table ID or name to list rows from | |
| use_column_names | No | Use column names (True) or IDs (False) in row values |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |