The Phish.net API is an HTTP/javascript API. Each request means the client asks for a file from phish.net in addition to your own site's HTML, javascripts, stylesheets and images. If you use our hosted callbacks, that's another additional HTTP call.
It's easy to improve upon that speed by caching the results of your API query. Sure, it's another call to your server rather than ours, which one might think is an equal offset, but using this method also improves the speed in the DOM by loading only after the rest of the page has loaded.
You'll want to start by using the tutorial called "Another Way to Use the Phish.net API". Using this method, you're improving the speed of each page load by placing the content into a <div> dynamically, after the HTML has loaded and rendered. However, you've introduced some lag as your server makes the request for the API.
We can offset this by modifying the phishnet-api-helper.php script. The script is configured to ask for the API each time it is called. However, even during a show, rarely is a song less than 5 minutes. So, if we modify the script like such, we should see another small performance gain.