Hi there, I hope you are great!
(I am not sure if this is the right category to post my topic but please feel free to suggest any changes.)
When I try to get data from the HTTPS API, it gives me a certain amount of records & an offset value if I want to get the rest of them. I have a database of 3800+ records, and repeatedly using offsets for more data might kind of slow down my app. Is there any way that I could retrieve as many records as I have, without worrying about offsets/page limits? Could it be a query parameter I should add? So it just gives me all the 3800+ records at once…
Here’s the API URL I am using to get my data from (I am trying to get all values of a single field like Name
)
api.airtable.com/v0/Base_ID/Table_Name?api_key=API_Key&fields[]=Name
Any help is appreciated! Thanks a lot!