list_tables
Retrieve tables from an Airtable base using either table identifiers or detailed field information to manage and organize data efficiently.
Instructions
List tables in a specific base
Input Schema
Name | Required | Description | Default |
---|---|---|---|
base_id | Yes | The Airtable base ID | |
detail_level | No | Level of detail to include in response | tableIdentifiersOnly |
Input Schema (JSON Schema)
{
"properties": {
"base_id": {
"description": "The Airtable base ID",
"title": "Base Id",
"type": "string"
},
"detail_level": {
"default": "tableIdentifiersOnly",
"description": "Level of detail to include in response",
"enum": [
"tableIdentifiersOnly",
"withFieldInfo"
],
"title": "Detail Level",
"type": "string"
}
},
"required": [
"base_id"
],
"type": "object"
}