Airtable API integration for AI agents
<h3>Airtable API & Chase Agents</h3><h4>Streamline Your Data Management: Chase Agents & Airtable API Integration</h4><p>Chase Agents enhances your data management capabilities by integrating seamlessly with the Airtable API. Build powerful, automated workflows and applications that interact with your Airtable bases without needing to write complex code. Leverage Chase Agents to connect, automate, and manage your structured data effortlessly.</p>
Connect Airtable API to Chase Agents as an API connection, then use it in plain-English automations — on the web, in Slack, or inside ChatGPT and Claude via MCP. Chase Agents builds the workflow and deterministic code runs it.
How to connect Airtable API
Add Airtable API from the Chase Agents connections marketplace as API connection, provide the required credentials, and reference it in your automation steps. See plans or read the connection guide.
About Airtable API
The whole API is available to you, here's some hints so you don't rely on your sometimes outdated view for these actions
For creating fields: curl -X POST "https://api.airtable.com/v0/meta/bases/{BASE_ID}/tables/{tableId}/fields" \ -H "Authorization: Bearer {AIRTABLE_API_TOKEN}" \ -H "Content-Type: application/json" \ --data '{ "description": "Whether I have visited this apartment yet.", "name": "Visited", "options": { "color": "greenBright", "icon": "check" }, "type": "checkbox" }'
To get schema, understand structure first use Okay, I can help with that. To get the schema of an Airtable base, you need to use the Airtable Metadata API. Specifically, you can list the tables within a base, and the response will include the schema (fields, types, options) for each table.
I will now call the Airtable API endpoint to retrieve the table schemas for your base using the following curl command: curl -X GET "https://api.airtable.com/v0/meta/bases/${AIRTABLE_BASE_ID}/tables" -H "Authorization: Bearer ${AIRTABLE_API_TOKEN}"