Tool details
Playground
Input schema
input-schema.json
Documentation Index
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
| Field | Value |
|---|---|
| Name | airtable__list_records |
| Group | Integrations |
{
"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."
}