I can’t seem to get more than 100 records per page. Is this a hard limit ? I don’t find the information anywhere that says so ? The documentation mentions a query limit of 50k rows and a default pagination of 100 records.
Thanks for your help.
I can’t seem to get more than 100 records per page. Is this a hard limit ? I don’t find the information anywhere that says so ? The documentation mentions a query limit of 50k rows and a default pagination of 100 records.
Thanks for your help.
You need to use cursor parameters to get more items Data API requests | Bubble Docs
I did so
curl --location ‘{{rootUrl}}/api/1.1/obj/Guest?cursor=0&pagination=120’
–header ‘Authorization: Bearer {{token}}’
Maximum item you can get in one call is 100. Now change your cursor to 100 to get next 100 items (from 100 to 200)
By the way… pagination is not aan available parameter. You have limit (that is 100 max) that you can play with.
Haha yes good catch, I meant to use “limit” in this test. but yeah result is the same and my question remains. So 100 is the max limit ? Why isn’t it written anywhere in doc ?