Back to Tools

Airtable

Data

Airtable spreadsheet-database hybrid. Create, read, update records in bases and tables.

Available Actions
listcreateupdatedelete
Input Schema
{
  "type": "object",
  "required": [
    "baseId",
    "tableId"
  ],
  "properties": {
    "baseId": {
      "type": "string"
    },
    "records": {
      "type": "array"
    },
    "tableId": {
      "type": "string"
    }
  }
}
Output Schema
{
  "type": "object",
  "properties": {
    "records": {
      "type": "array"
    }
  }
}
Quick Start

API Endpoint

POST /api/execute/airtable

cURL Example

curl -X POST \
  https://api.nulayers.com/execute/airtable \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"action": "list"}'
Integration

Get your API key from the dashboard to start using this tool in your AI applications.