Some guys made an API which display some Battlefield stats, and requested people to not call the API for every visit to the site, but cache the response and make real calls on a defined interval.
How do I approach this? How can I store data to other users in the frontend?
What server side language are you using? I’d make a cron job to call the real data and put it into a database, then all the client calls would be to the database on your end.