CRM & Business Tools

Airtable

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.

Features

  • Record creation
  • Record updates
  • Query operations
  • Field mapping
  • Attachment handling
  • Formula support

Requirements

  • Airtable account
  • Personal access token
  • Base ID
  • Table permissions

Setup

  1. 1Create Airtable personal access token
  2. 2Get base ID and table names
  3. 3Connect "Airtable" integration
  4. 4Enter API credentials
  5. 5Configure table mappings
  6. 6Set up sync rules
  7. 7Test record operations

Authentication

Personal access token

Code Examples

cURL

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"
      }
    }]
  }'