list_records
Retrieve records from a NocoDB table with optional filters, sorting, field selection, and pagination.
Instructions
List records from a table, with optional filtering, sorting, field selection, and pagination.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Comma-separated sort fields, e.g. -CreatedAt,Name | |
| limit | No | Max records to return (default 25) | |
| where | No | NocoDB filter expression, e.g. (Status,eq,Done)~and(Priority,eq,High) | |
| fields | No | Comma-separated field names to return | |
| offset | No | Number of records to skip | |
| view_id | No | Restrict results to a specific view | |
| table_id | Yes | Table ID, from list_tables |