Hi @charlie!
From what I understand, Cornerstone API request is triggered on the user’s page load, unless it is already cashed with him, right?
For example, some Google APIs have a free tier of 1000 requests per month.
A single request is able to retrieve an entire list of data we need, containing hundreds of individual items.
If this is triggered by users, 1000 entries get spent quickly. But if the request is made by the website and stored, and then refreshed every hour, it is still within the free 1000 requests per month limit. I imagine it is a similar situation with many other paid APIs.
Then it would be down to looping the JSON stored on the website.
Am I even thinking in the right direction?
Thanks!