Skip to main content
List records from a table with optional filtering

Tool details

FieldValue
Nameairtable__list_records
GroupIntegrations

Playground

Input schema

Input schema
{
  "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."
}

Output schema

This tool does not publish an output schema.