Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
List records from a table with optional filtering
airtable__list_records
{ "type": "object", "properties": { "baseId": { "type": "string", "description": "Airtable base ID" }, "tableIdOrName": { "type": "string", "description": "Table ID or URL-encoded table name" }, "view": { "type": "string", "description": "Optional view name or ID" }, "filterByFormula": { "type": "string", "description": "Airtable formula used to filter returned records" }, "maxRecords": { "type": "number", "description": "Maximum records to return" }, "pageSize": { "type": "number", "description": "Records per page" }, "offset": { "type": "string", "description": "Pagination offset from Airtable" } }, "required": [ "baseId", "tableIdOrName" ], "description": "Input schema for the airtable__list_records tool." }