Help

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.

Retrieving records using Api in Flutter

Topic Labels: Custom Extensions
1840 1
cancel
Showing results for 
Search instead for 
Did you mean: 
Focus_MHTCET
4 - Data Explorer
4 - Data Explorer

I am Not able to Fetch all the records using API in flutter
What i did is used url - https://api.airtable.com/v0/BASE_ID/TABLE_ID?api_key=API_KEY

using this i was only able to get 100 records
please help me

1 Reply 1
Vivid-Squid
11 - Venus
11 - Venus

Hi @Focus_MHTCET,
The server returns one page of records at a time. Each page will contain pageSize records, which is 100 by default.

If there are more records, the response will contain an offset. To fetch the next page of records, include offset in the next request’s parameters.

Pagination will stop when you’ve reached the end of your table. If the maxRecords parameter is passed, pagination will stop once you’ve reached this maximum.