List Coda Rows
coda_list_rowsList rows from a Coda table using filters, sorting, and pagination. Returns data in markdown or JSON format.
Instructions
List rows from a Coda table with optional filtering and sorting.
Args:
doc_id (string): The document ID
table_id (string): The table ID or name
query (string, optional): Filter rows — format: "columnId:value"
sort_by (string, optional): Sort column ID
limit (number): Max rows (default 25, max 500)
page_token (string, optional): Pagination token
value_format (string): 'simple' (default) or 'simpleWithArrays' or 'rich'
response_format: 'markdown' or 'json'
Returns: List of rows with their values keyed by column name.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max items to return (1–500, default 25) | |
| query | No | Filter rows: 'columnId:value' | |
| doc_id | Yes | Coda document ID | |
| sort_by | No | Column ID to sort by | |
| table_id | Yes | Table ID or name | |
| page_token | No | Token for next page of results (from previous response) | |
| value_format | No | Value format for row cells | simple |
| response_format | No | Output format: 'markdown' for human-readable, 'json' for machine-readable | markdown |