Skip to main content

Setting up Airtable

Use Airtable in APIs

Once your Airtable integration is created, you can start calling Airtable actions in Superblocks APIs. In addition to generic HTTP requests, Airtable supports the following actions.

Supported actions

Example usage

Airtable’s API returns embedded fields for each record. To flatten the response so each field is a top level key to be used as a table column header in Superblocks, add the following JavaScript step after a call to List records:
return <AIRTABLE_STEP_NAME>.output.records.map(item => item.fields);