Airtable order integration code

Topic summary

A developer has created and shared open-source Python code to automatically sync new Shopify orders to Airtable. The integration uses Shopify’s Order Created webhook and APIs from both platforms.

Implementation options:

  • Self-hosted solution using Flask webserver (available on GitHub)
  • Serverless alternative for those who prefer not to manage their own server

Current status:
Another user inquired whether similar code exists for syncing Products and mentioned SyncBase, an existing app that syncs entire Shopify stores (including metaobjects) to Airtable. The discussion remains open with no response yet about product syncing or experience with SyncBase.

Summarized with AI on October 24. AI used: claude-sonnet-4-5-20250929.

If anyone is interested, I wrote some code to sync over new Shopify orders to Airtable using the Shopify Order Created webhook and the APIs of both platforms. The code can be found in this Github repo:

https://github.com/codeupify/functions/blob/main/shopify/airtable-order-integration/README.md

The code is in Python and using Flask as a webserver that you can host somewhere. There is also a serverless solution available here if you don’t want to spin up your own server:

https://codeupify.com/f/yMYerkEaOB

Cool, you did the same fro Products right ?
There’s this app called SyncBase that syncs your entire store to Airtable, like metaobjects and all, have you tried ?