# Airtable

Connect Mechanic to your [Airtable](https://airtable.com/) bases! You can then use any of the features in the [Airtable API](https://airtable.com/developers/web/api/introduction). You now have a full Shopify to Airtable integration.

### Authentication

{% hint style="info" %}
You can connect more than one Airtable account choosing which account to use when writing your task code.
{% endhint %}

Before using Airtable integrations connect your Airtable accounts:

1. Go to **Settings → Authentication** in Mechanic
2. Select **Airtable** in the provider list
3. Connect your Airtable account

### Basic Usage

See full usage [here](/core/actions/integrations/airtable.md).

```liquid
{% action "airtable" %}
  {
    "account": "AIRTABLE_ACCOUNT_NAME",
    "method": "POST",
    "url_path": "/v0/meta/bases/AIRTABLE_BASE_ID/AIRTABLE_TABLE_ID",
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "records": [
        {
          "fields": {
            "TODO": "Review Mechanic",
            "Complete": false
          }
        }
      ]
    }
  }
{% endaction %}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://learn.mechanic.dev/platform/integrations/airtable.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
