Integrate your AI agent with Airtable bases. Create, update, and query records based on conversations. Use AI to generate and organize structured data in Airtable.
Personal access token
curl "https://api.airtable.com/v0/YOUR_BASE_ID/YOUR_TABLE_NAME" \
-H "Authorization: Bearer YOUR_AIRTABLE_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"records": [{
"fields": {
"Name": "New Record",
"Status": "Active"
}
}]
}'