Using the Google Feed API it's possible to request multiple feed objects like so:
var feed1 = new google.feeds.Feed(url1),
feed2 = new google.feeds.Feed(url2),
feed3 = new google.feeds.Feed(url3);
feed1.load(callback);
feed2.load(callback);
feed3.load(callback);
This can create a large number of simultaneous requests that can take a long time to resolve and load.
Is there a way to get multiple feeds from the API and retrieve them with a single request?
The API developer guide doesn't seem to have an option to allow that, so I'd guess you need to do it the way you are using it currently, although IMO it may be a better idea to request them one after another to not overload the server.