The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
Hello Community,
This is how I am getting the records using the Python requests library: How to get more than 100 rows using Airtable API in Python using offest?
But some fields only show the “Record_id” instead of actual values. I hit a wall trying ...
Hello.
I am really new to the Airtable API and for some reason connecting the API this way did not work-
at = airtable.Airtable('Base_Key', 'Airtable_Key')
But I got it working this way -
get_url = ‘https://api.airtable.com/v0/BASE_ID/TABLE_NAM...
This is exactly the code I am using :
How to get more than 100 rows using Airtable API in Python using offest? API
After a lot of issues, I found this solution.
Posting it for anyone else facing the same problem.
global ...
After a lot of issues, I found this solution.
Posting it for anyone else facing the same problem.
global offset
offset = '0'
result = []
while True :
url = "https://api.airtable.com/v0/BASE_ID/TABLE_NAME"
querystring = {
"view":"Pub...