Airtable API Proxy Overview
Overview of the Airtable API proxy and how Stacksync enables secure, simplified access to Airtable data.
Last updated
curl -X GET "https://us.api-proxy.stacksync.com/v1/proxy/https://api.airtable.com/v0/<baseId>/<tableId>?maxRecords=5&view=Grid%20view" \
-H "Authorization: Bearer <token>"{
"records": [
{
"id": "recXXXXXXXXXXXXXX",
"createdTime": "2023-07-28T15:01:14.000Z",
"fields": {
"Name": "Sample Record 1",
"Status": "In Progress",
"Email": "sample1@example.com",
"Amount": 1000,
"Due Date": "2024-07-31",
"Tags": ["Important", "Client"]
}
},
{
"id": "recYYYYYYYYYYYYYY",
"createdTime": "2024-07-28T15:19:21.000Z",
"fields": {
"Name": "Sample Record 2",
"Status": "Completed",
"Email": "sample2@example.com",
"Amount": 4000,
"Due Date": "2024-07-25",
"Tags": ["Important", "Partner"]
}
}
],
"offset": "itrXXXXXXXXXXXXXX"
}