Thuron.5648:

I’ve seen this question asked before, but with no further comments or information on it: Is there any way to get all match_details from every match without having to call match_details.json seperately for every match? I’m implementing timers on all WvW objectives in my application, but doing the requests for all the matches takes about 10-15 seconds for my server. Maybe my approach is wrong, but to me it seems logical to be able to get the info of all matches at once. Thanks in advance.

Drakma.1549:

I you like, you can check out my API available at gw2stats.net. Just click in the API Status link at the top then select API. You can get all the wvw data in one query.

Thuron.5648:

That!! Thank you!!!

Steelskin.5826:

Hi !
Maybe it’s too late but I’ve resolved this issue on my previous server by performing http requests in parallel.
Like this, you will be able to request all matches infos in 2 or 3 seconds.

Thuron.5648:

Never too late for a good tip, thanks! That will come in handy one day

Ryan.9387:

I’d suggest just threading the requests like steelskin said.