For the updating of my database (concerning different car models) I made around 70 different API calls, for every model a different one. Only 10 are appearing however in my data source for an external API.
Is there a maximum of API calls?
For the updating of my database (concerning different car models) I made around 70 different API calls, for every model a different one. Only 10 are appearing however in my data source for an external API.
Is there a maximum of API calls?
It definitely should handle more than 10. Perhaps the others are set as Action calls instead of Data, or they are not yet initialised?
If many of the calls have the same result structure, you could possibly cut down on the number of calls defined by using parameters in the url, header, or body.
THanks a lot, I didn’t initialize of all them, great!
Not sure if it’s applicable, but have you tried to call all of the models at once in a single API call?
If you can do this via your API (test in Postman, or similar), you might be better off saving the large list that is returned to a page state in Bubble…then applying a “filter: (Advanced)” property to each of your repeating groups to sort out all of the makes and models from the saved list.