Airtable
Secure, streamlined access to the Airtable API for your team.
Overview
Pass Through
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
curl -X GET "https://eu.api-proxy.stacksync.com/v1/proxy/https://api.airtable.com/v0/<baseId>/<tableId>?maxRecords=5&view=Grid%20view" \
-H "Authorization: Bearer your_api_proxy_service_token"import requests
url = "https://eu.api-proxy.stacksync.com/v1/proxy/https://api.airtable.com/v0/<baseId>/<tableId>?maxRecords=5&view=Grid%20view"
headers = {
"Authorization": "Bearer your_api_proxy_service_token",
}
response = requests.get(url, headers=headers)
print(response.json())const url =
"https://eu.api-proxy.stacksync.com/v1/proxy/https://api.airtable.com/v0/<baseId>/<tableId>?maxRecords=5&view=Grid%20view";
fetch(url, {
method: "GET",
headers: {
Authorization: "Bearer your_api_proxy_service_token",
},
})
.then((r) => r.json())
.then((json) => console.log(json))
.catch((e) => console.error(e));Example response
Attachements
Last updated