If your page is poking the API every page load. You are doing it wrong.
You should use a background task via CRON to update status into a database table.
And your webpage serves from that database table instead of direct calling the API.
As then if two people loads the webpage, you are not making double the number of requests, you are just loading from your database