Airtable

TL;DR

This API proxy lets you do any operation on your Airtable data but removes from you all the complexity of setting up and using the classic Airtable API 🀩

No need to worry about setting up a connected app, rotating the security token, using the correct API endpoints, record formatting and more! Everything is managed for you πŸ’†β€β™€οΈ

Operations:

  • Pass Through

Regions 🌍

Depending on your region, you can use:

  • πŸ‡ͺπŸ‡Ί https://eu.api-proxy.stacksync.com/

  • πŸ‡ΊπŸ‡Έ https://us.api-proxy.stacksync.com/

Pass Through

Make a request to any Airtable API which supports OAuth by providing the URL, Request Method and the Request Body.

A request will be sent to the URL provided using the request method and request body. The request body can be empty.

bash

curl -X [GET | POST | PUT | PATCH | DELETE] \
https://eu.api-proxy.stacksync.com/v1/proxy/INSERT_REQUEST_URL_HERE \
-H "Authorization: Bearer your_api_proxy_service_token" \
-d 'Optional'

Example request:

Read Records from a Table

bash

Example response:

json

Last updated