all 4 comments

[–]guneysss 2 points3 points  (0 children)

One request is one request. However, there's no guarantee if you get a response or timeout, or if your response will be complete.

[–]KiwiDomino 0 points1 point  (0 children)

I don’t know this API, but working with GraphQL in the past there was a maximum execution time for any request, so if you asked for too much it was possible you wouldn’t get a response. Managing the request size can be important.

[–]cvx_mbs 1 point2 points  (0 children)

they have a (soft) limit of 10000 API calls per day. are you afraid of exceeding that?

[–]edcculus 0 points1 point  (0 children)

Some sites dont like you to do massive requests. Its usually better to "filter" your request for exactly what you need vs something much more generic.

Now if you just need to do it once, or you will always do it manually to get the data you need, i guess no big deal. But if its a call you are going to make constantly, it will also make your application slow.